/* Variables */
:root {
  /* Colors */
  --primary-color: #a5712c;
  --primary-alt-color: #bf873c;
  --secondary-color: #1d0809;
  --ternary-color: #fff3d8;
  --ternary-alt-color: #f3ece3;
  --quaternary-color: #c16700;
  --quinary-color: #770f00;
  --quinary-alt-color: #bb877f;
  --white: #fff;
  --black: #220000;
  --error: #cc2049;
  --success: #65b813;

  /* Miscellaneous */
  --header-transparency: 80%;
  --border-radius: 8px;
  --form-element-min-height: 3rem;
  --top-wrapper-bg-height: 14rem;
}

/* Global */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

.page-content.page-cms ul,
p {
  color: var(--black);
}

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

.text-primary-alt {
  color: var(--primary-alt-color);
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.the-content {
  color: var(--black);
}

.the-content p {
  line-height: 1.6;
}

.the-content a {
  color: var(--primary-alt-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

.the-content a:hover {
  color: var(--black);
}

.the-content h2 {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.the-content h2::before {
  display: block;
  content: "";
  width: 100%;
  height: 3.5rem;
  margin-bottom: 2px;
  background-image: url("../svg/decoration1.svg");
  background-repeat: no-repeat;
}

.the-content h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 5px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary-color);
  border-bottom: 1px dashed var(--primary-color);
}

.the-content h3::before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 32px;
  margin-bottom: 2px;
  background-image: url("../svg/decoration2.svg");
  background-repeat: no-repeat;
}

.the-content ul {
  padding-left: 20px;
}

.the-content ul li {
  position: relative;
  margin-bottom: 15px;
  padding-top: 4px;
  padding-left: 6px;
  list-style: none;
  line-height: 1.6;
}

.the-content ul li::before {
  content: url("../svg/decoration3.svg");
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  transform: translateX(-100%);
}

.the-content.white p,
.the-content.white a,
.the-content.white h1,
.the-content.white h2,
.the-content.white h3,
.the-content.white ul li {
  color: var(--white);
}

.the-content.white h3 {
  border-color: var(--white);
}

.the-content.white h3::before {
  background-image: url("../svg/decoration2-white.svg");
}

.the-content.white ul li::before {
  content: url("../svg/decoration3-white.svg");
}

.the-content a.btn {
  text-decoration: none;
}

.the-content a.btn.btn-primary {
  color: var(--white);
}

.the-content a.btn.btn-primary:hover {
  color: var(--black);
}

#wrapper {
  display: block !important;
  padding-top: 0;
  background-color: var(--white);
}

#wrapper #top-wrapper-background-container {
  position: relative;
}

#wrapper #top-wrapper-background {
  position: absolute;
  top: 0;
  left: 0;
  height: var(--top-wrapper-bg-height);
  width: 100%;
}

#wrapper #top-wrapper-background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#main .page-content #notifications {
  position: relative;
  margin: 0;
}

#blockcart-modal {
  align-items: center;
  justify-content: center;
  color: var(--black);
}

#blockcart-modal.fade.in {
  display: flex !important;
}

#blockcart-modal .divide-right {
  border-right: 2px solid var(--ternary-alt-color);
}

#blockcart-modal .modal-content {
  border-radius: var(--border-radius);
  border: none;
  overflow: hidden;
}

#blockcart-modal .modal-content .modal-header {
  background: var(--black);
  border: none;
}

#blockcart-modal .modal-content .modal-header .close .material-icons {
  color: var(--white);
}

#blockcart-modal .modal-content .modal-header .modal-title {
  color: var(--white);
  font-weight: 500;
}

#blockcart-modal .modal-content .modal-body {
  background: var(--ternary-color);
}

#blockcart-modal .modal-content .modal-body p:not(.cart-products-count) {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--black);
  text-transform: uppercase;
}

#blockcart-modal .modal-content .modal-body .label {
  color: var(--black);
  text-transform: uppercase;
}

#blockcart-modal .modal-content .modal-body .value {
  color: var(--quinary-color);
  text-transform: uppercase;
  font-size: 15px;
}

#blockcart-modal .modal-content .modal-body .product-image {
  border-radius: var(--border-radius);
}

#blockcart-modal .modal-content .modal-body .product-name {
  color: var(--black);
}

#blockcart-modal .modal-content .modal-body .product-price {
  color: var(--quinary-color);
  font-weight: 700;
}

#blockcart-modal .modal-content .modal-body .cart-products-count {
  color: var(--black);
}

#blockcart-modal .modal-content .modal-body .product-total {
  padding: 1rem;
  background-color: var(--white);
  border: 1px solid var(--ternary-alt-color);
  border-radius: 8px;
}

#blockcart-modal .modal-content .modal-body .arrow-left-icon {
  width: 1.7rem;
}

.btn:disabled {
  opacity: 1;
}

.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--form-element-min-height);
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: all ease 0.2s;
}

.btn.btn-primary.disabled {
  color: var(--white);
}

.btn.btn-primary:focus,
.btn.btn-primary:active:first-child {
  outline: none;
}

.btn.btn-primary:hover,
.btn.btn-primary:disabled:hover,
.btn.btn-primary:active:focus,
.btn.btn-primary.disabled:focus {
  color: var(--secondary-color);
  background-color: var(--primary-alt-color);
  border-color: var(--primary-alt-color);
}

.btn.btn-secondary {
  display: inline-flex;
  align-items: center;
  min-height: var(--form-element-min-height);
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
  border: 1px dashed var(--white);
  border-radius: var(--border-radius);
  transition: all ease 0.3s;
}

.btn.btn-secondary:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn.btn-secondary:hover:active {
  color: var(--white);
}

.btn.btn-ternary {
  display: inline-flex;
  align-items: center;
  min-height: var(--form-element-min-height);
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--primary-alt-color);
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
  border: 1px dashed var(--primary-alt-color);
  border-radius: var(--border-radius);
  transition: all ease 0.3s;
}

.btn.btn-ternary:hover {
  background-color: var(--primary-alt-color);
  border: 1px solid var(--primary-alt-color);
  color: var(--white);
}

.btn.btn-svg {
  gap: 0.75rem;
  padding: 0.25rem 1.5rem;
}

.btn.btn-primary.btn-svg:hover,
.btn.btn-primary.btn-svg.disabled:focus {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn.btn-primary.btn-svg .icon {
  display: flex;
  width: 1.4rem;
  fill: white;
}

.btn.btn-ternary.btn-svg .icon {
  display: flex;
  width: 1.4rem;
  fill: var(--primary-alt-color);
}

.btn.btn-ternary.btn-svg:hover .icon {
  fill: var(--white);
}

.custom-checkbox input[type="checkbox"] + span {
  border-color: var(--primary-alt-color);
  background: var(--ternary-alt-color);
  border-radius: 5px;
}

.custom-checkbox input[type="checkbox"] + span .checkbox-checked {
  color: var(--primary-alt-color);
}

.custom-checkbox input[type="checkbox"]:focus + span,
.custom-radio input[type="radio"]:focus + span {
  border-color: var(--primary-alt-color);
}

/* .custom-checkbox:has(input[type=checkbox]:focus),
.custom-radio:has(input[type=radio]:focus) {
    outline: 2px solid var(--black);
    outline-offset: 2px;
} */

body .bg-success {
  background-color: var(--success) !important;
}

body .text-success {
  color: var(--success) !important;
}

body .bg-danger {
  background-color: var(--error) !important;
}

body .alert {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  min-height: var(--form-element-min-height);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: var(--border-radius);
}

body .alert.alert-info {
  background: var(--white);
  border: 2px solid var(--ternary-alt-color);
  color: var(--black);
}

body .alert.alert-warning,
body .alert.alert-danger {
  background: var(--white);
  border-color: var(--error);
  color: var(--error);
}

body .alert.alert-success {
  background: var(--white) !important;
  border-color: var(--success) !important;
  color: var(--success);
}

body .alert ul {
  margin-bottom: 0;
}

body .ps-alert-error .item,
body .ps-alert-success .item {
  border-radius: var(--border-radius);
}

body .ps-alert-error .item p,
body .ps-alert-success .item p {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

body .ps-alert-error .item {
  background-color: var(--error) !important;
  border-color: var(--error) !important;
}

body .ps-alert-error .item i {
  border-color: var(--error);
}

body .ps-alert-error .item i svg {
  background-color: var(--error);
}

body .ps-alert-success .item {
  background-color: var(--success) !important;
  border-color: var(--success) !important;
}

body .ps-alert-success .item i {
  border-color: var(--success);
}

body .ps-alert-success .item i svg {
  background-color: var(--success);
}

body .form-control-label {
  font-weight: 400;
  color: var(--black);
  text-align: left;
  padding-top: 0;
}

body .form-control-label.no-spacing {
  margin: 0;
}

body .js-input-column.form-control-valign {
  padding-top: 0;
}

body .custom-radio {
  border-color: var(--primary-alt-color);
  background: var(--ternary-alt-color);
}

body .custom-radio input[type="radio"]:checked + span {
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: var(--primary-alt-color);
}

body .form-control {
  min-height: var(--form-element-min-height);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border: 1px solid var(--primary-alt-color);
  border-radius: var(--border-radius);
  background: var(--white);
  font-weight: 500;
  color: var(--black);
}

body .form-control::placeholder {
  font-style: italic;
  color: var(--black);
  opacity: 0.6;
}

body .form-control:focus {
  border: 1px solid var(--primary-alt-color);
}

body .form-control.form-control-select {
  padding-right: 2.5rem;
  background: url("../svg/chevron-down.svg") no-repeat right 0.5rem center /
    1.5rem 0.4rem;
  background-color: var(--white);
}

body .bootstrap-touchspin input[type="number"] {
  width: 5rem !important;
  min-height: 3rem;
  padding-left: 1.5rem !important;
  border: 1px solid var(--primary-alt-color);
  border-right: none;
  border-top-left-radius: var(--border-radius) !important;
  border-bottom-left-radius: var(--border-radius) !important;
  font-weight: 700;
}

body .bootstrap-touchspin .input-group-btn-vertical {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 3rem;
  float: none;
}

body .bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  width: auto;
  max-width: none;
  height: calc(50% + 1px);
}

body .bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin:hover {
  background-color: var(--primary-alt-color);
}

body .bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin i {
  position: static;
  color: var(--primary-alt-color);
  font-size: 1.2rem;
}

body .bootstrap-touchspin .input-group-btn-vertical .btn.btn-touchspin:hover i {
  color: var(--white);
}

body .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border: 1px solid var(--primary-alt-color);
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: var(--border-radius);
}

body .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border: 1px solid var(--primary-alt-color);
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: var(--border-radius);
}

body .input-group .input-group-btn > .btn[data-action="show-password"] {
  background-color: var(--primary-alt-color);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  font-size: 14px;
}

body table.table {
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-alt-color);
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
}

body table.table th {
  padding: 1rem;
}

body table.table th,
body table.table td {
  border: 2px solid var(--ternary-alt-color);
}

body table.table tr + tr th,
body table.table tr + tr td {
  border-top: 0;
}

body table.table th + th,
body table.table th + td,
body table.table td + th,
body table.table td + td {
  border-left: 0;
}

body table.table th:first-child,
body table.table td:first-child {
  border-left: 0;
}

body table.table th:last-child,
body table.table td:last-child {
  border-right: 0;
}

body table.table tr:first-child th,
body table.table tr:first-child td {
  border-top: 0;
}

body table.table tbody {
  color: var(--black);
}

body table.table tbody tr:last-child th,
body table.table tbody tr:last-child td {
  border-bottom: 0;
}

body table.table thead th {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
}

body table.table tbody th,
body table.table tbody td {
  background: var(--white);
}

body table.table tfoot tr:first-child th,
body table.table tfoot tr:first-child td {
  border-top: 2px solid var(--ternary-alt-color);
}

body table.table tfoot tr:last-child th,
body table.table tfoot tr:last-child td {
  border-bottom: 0;
}

.french-decoration {
  display: flex;
  width: 4rem;
}

.custom-container {
  width: calc(100% - 48px);
  margin: 0 auto;
}

.custom-container.padding-top {
  padding-top: 2.5rem;
}

.leaflet-map .leaflet-popup-content-wrapper,
.leaflet-map .leaflet-popup-tip {
  background: var(--black);
  color: var(--white);
  box-shadow: none;
}

.leaflet-map .leaflet-popup-content-wrapper p {
  margin: 14px 0;
  color: var(--white);
}

.leaflet-map.leaflet-container a.leaflet-popup-close-button {
  font-size: 22px;
  color: var(--white);
}

.leaflet-map.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-map.leaflet-container a.leaflet-popup-close-button:focus {
  color: var(--primary-alt-color);
}

.leaflet-map.leaflet-container {
  font-family: "Montserrat", sans-serif;
}

.grecaptcha-badge {
  z-index: 1001;
}

@media (min-width: 640px) {
  .custom-container {
    max-width: 608px;
  }
}

@media (min-width: 768px) {
  .custom-container {
    max-width: 736px;
  }
}

@media (min-width: 1024px) {
  .custom-container {
    max-width: 992px;
  }
}

@media (min-width: 1152px) {
  .custom-container {
    max-width: 1120px;
  }
}

@media (min-width: 1280px) {
  .custom-container {
    max-width: 1248px;
  }
}

@media (min-width: 1536px) {
  .custom-container {
    max-width: 1504px;
  }
}

/* Header */
#header {
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
}

#header .logo {
  height: 67px;
  transition: all ease 0.4s;
}

#header .header-nav {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}

#header .header-nav p {
  color: var(--white);
}

#header .header-nav .top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}

#header .header-nav .sentence {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#header .header-nav .sentence p {
  margin-bottom: 0;
  font-weight: 500;
  font-style: italic;
}

#header .header-nav .links {
  display: flex;
  align-items: center;
}

#header .header-nav .links,
#header .header-nav .wrapper {
  width: auto;
  float: none;
}

#header .header-nav .links p.h3 {
  display: none;
}

#header .header-nav .links ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

#header .header-nav .links ul li:first-of-type {
  padding-left: 0;
  border: none;
}

#header .header-nav .links ul li:nth-child(2) {
  border-left: 1px solid var(--white);
}

#header .header-nav .links ul li {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-right: 1px solid var(--white);
}

#header .header-nav .links ul li .shop-icon {
  display: inline-flex;
  width: 1.5rem;
  margin-right: 1rem;
}

#header .header-nav .links ul li .shop-icon svg {
  fill: var(--secondary-color);
}

#header .header-nav .links ul li a {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

#header .header-nav .links ul li a:hover {
  color: var(--secondary-color);
}

#header .header-nav .block-social {
  display: flex;
  align-items: center;
}

#header .header-nav .block-social ul {
  align-items: center;
  margin-bottom: 0;
}

#header .header-nav .block-social ul li {
  width: auto;
  height: auto;
  margin: 0;
  margin-right: 1rem;
}

#header .header-nav .block-social ul li.facebook {
  margin-right: 0.7rem;
}

#header .header-nav .block-social ul li:last-of-type {
  margin-right: 0;
}

#header .header-nav .block-social ul li,
#header .header-nav .block-social ul li:hover {
  background-color: transparent;
}

#header .header-nav .block-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

#header .header-nav .block-social .social-link svg {
  fill: var(--white);
  width: 1.25rem;
  transition: all ease 0.2s;
}

#header .header-nav .block-social .instagram .social-link svg {
  width: 1.1rem;
}

#header .header-nav .block-social .linkedin .social-link svg {
  width: 1rem;
}
/* taille & align standard pour tous les icônes */
#header .header-nav .block-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1; /* évite la grande hauteur de ligne */
}

/* normalise le SVG, peu importe ses attrs internes (width/height énormes) */
#header .header-nav .block-social .social-link svg {
  display: inline-block;
  width: 1.25rem; /* ajuste si besoin */
  height: 1.25rem; /* idem */
  vertical-align: middle; /* aligne avec le texte si présent */
}

#header .header-nav .block-social ul li:hover .social-link svg path,
#header .header-nav .block-social ul li:hover .social-link svg rect,
#header .header-nav .block-social ul li:hover .social-link svg circle,
#header .header-nav .block-social ul li:hover .social-link svg polygon {
  fill: var(--secondary-color);
}

#header .header-nav .block-social .facebook,
#header .header-nav .block-social .facebook::before,
#header .header-nav .block-social .instagram,
#header .header-nav .block-social .linkedin {
  background-image: none;
}

#header .header-top {
  background-color: transparent;
  transition: all ease 0.4s;
}

#header .header-top.reduced {
  background-color: color-mix(
    in srgb,
    var(--secondary-color) var(--header-transparency, 100%),
    transparent
  );
}

#header .header-top.default-reduced,
#header .header-top.reduced {
  padding: 0.75rem 0;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.11);
}

#header .header-top.default-reduced {
  background-color: color-mix(in srgb, var(--secondary-color) 90%, transparent);
}

#header .header-top.default-reduced .logo,
#header .header-top.reduced .logo {
  height: 55px;
}

#header .header-top a[data-depth="0"],
#header .header-top a[data-depth="1"] {
  font-weight: 500;
  color: var(--white);
  text-transform: none;
}

#header .header-top a[data-depth="0"] {
  position: relative;
  padding: 1rem 0.625rem;
  transition: all ease 0.2s;
}

#header .header-top a[data-depth="0"]::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 8px;
  display: block;
  height: 3px;
  width: calc(100% - 20px);
  background-color: var(--primary-color);
  border-radius: 1px;
  transition: all ease 0.4s;
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
}

#header .header-top a[data-depth="0"]:hover {
  color: var(--white);
}

#header .header-top .top-menu[data-depth="0"] .category:hover a[data-depth="0"],
#header
  .header-top
  .top-menu[data-depth="0"]
  .cms-category:hover
  a[data-depth="0"],
#header
  .header-top
  .top-menu[data-depth="0"]
  .cms-page:hover
  a[data-depth="0"] {
  transform: translateY(-3px);
}

#header
  .header-top
  .top-menu[data-depth="0"]
  .category:hover
  a[data-depth="0"]::after,
#header
  .header-top
  .top-menu[data-depth="0"]
  .cms-category:hover
  a[data-depth="0"]::after,
#header
  .header-top
  .top-menu[data-depth="0"]
  .cms-page:hover
  a[data-depth="0"]::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}

#header .header-top a[data-depth="1"] {
  padding: 0.5rem 0;
  font-size: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 50%, transparent);
}

#header .header-top a[data-depth="1"]:hover {
  color: var(--secondary-color);
}

#header
  .header-top
  .top-menu[data-depth="1"]
  .category:last-of-type
  a[data-depth="1"],
#header
  .header-top
  .top-menu[data-depth="1"]
  .cms-page:last-of-type
  a[data-depth="1"] {
  border-bottom: none;
}

#header .header-top .top-menu .category,
#header .header-top .top-menu .cms-category {
  position: relative;
}

#header .header-top .top-menu .sub-menu {
  top: 50px !important;
  width: auto;
  min-width: auto;
  background-color: var(--primary-color);
  border-radius: 10px;
  border-top-left-radius: 0;
  margin-left: 10px;
}

#header .header-top .top-menu[data-depth="1"] {
  display: flex;
  flex-direction: column;
  margin: 1rem;
}

#header .header-top .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

#header .header-top .nav-container .logo-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

#header #mobile_top_menu_wrapper {
  display: none;
}

#header .header-top .nav-container .logo-container .burger-menu-icon {
  display: none;
  width: 1.75rem;
}

#header .header-top .nav-container .logo-container .burger-menu-icon svg {
  stroke: var(--white);
}

#header .header-top .header-top-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: 1rem;
}

#header .header-top #_desktop_user_info .user-info {
  display: flex;
  gap: 1.5rem;
}

#header .header-top #_desktop_user_info .user-info .logout-icon,
#header .header-top #_desktop_user_info .user-info .account-icon {
  display: flex;
  width: 1.7rem;
}

#header .header-top #_desktop_user_info .user-info .logout-icon svg {
  stroke: var(--white);
}

#header .header-top #_desktop_user_info .user-info .account-icon svg {
  fill: var(--white);
}

#header .header-top #_desktop_cart .cart-icon {
  display: flex;
  width: 1.7rem;
  position: relative;
}

#header .header-top #_desktop_cart .cart-icon svg {
  fill: var(--white);
}

#header .header-top #_desktop_cart .cart-products-count {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 12px;
  border-radius: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  transform: translate(70%, -50%);
}

#header #mobile_top_menu_wrapper {
  position: absolute;
  top: 0;
  left: 15px;
  height: 100vh;
  width: 80%;
  background: var(--primary-color);
}

#header #mobile_top_menu_wrapper .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

#header #mobile_top_menu_wrapper .mobile-menu-header .text {
  color: var(--white);
  font-size: 15px;
}

#header #mobile_top_menu_wrapper .mobile-menu-header .cross-icon {
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: none;
  fill: var(--white);
}

#header #mobile_top_menu_wrapper #mobile-menu-container a[data-depth="0"],
#header #mobile_top_menu_wrapper #mobile-menu-container a[data-depth="1"] {
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 50%, transparent);
}

#header #mobile_top_menu_wrapper #mobile-menu-container a span.hidden-md-up {
  display: inline !important;
}

#header #mobile_top_menu_wrapper #mobile-menu-container .navbar-toggler {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

@media (min-width: 1080px) and (max-width: 1120px) {
  #header .header-top #_desktop_user_info .user-info .logout {
    display: none;
  }
}

@media (max-width: 1090px) {
  #header #_desktop_top_menu {
    display: none;
  }

  #header .header-top .nav-container .logo-container .burger-menu-icon {
    display: block;
  }

  #header #mobile_top_menu_wrapper {
    display: block;
  }
}

@media (max-width: 991px) {
  #header .header-nav .links {
    padding-right: 0;
  }

  #header .header-nav .links ul li .shop-icon {
    display: none;
  }

  #header .header-nav .links ul li:first-of-type {
    padding-left: 0;
  }

  #header .header-nav .links ul li:last-of-type {
    padding-right: 0;
    border: none;
  }

  #header .header-nav .block-social {
    display: none;
  }

  #header .header-top {
    padding: 0.75rem 0;
    background-color: color-mix(
      in srgb,
      var(--secondary-color) var(--header-transparency, 100%),
      transparent
    );
  }

  #header .header-top .logo {
    max-height: 50px;
  }
}

@media (max-width: 850px) {
  #header .header-nav {
    max-height: none;
  }

  #header .header-nav .top-container,
  #header .header-nav .sentence {
    flex-direction: column;
  }

  #header .header-nav .sentence {
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    text-align: center;
  }

  #header .header-nav .links ul li a {
    text-align: center;
  }
}

@media (max-width: 767px) {
  #header .header-nav .links div.hidden-md-up {
    display: none;
  }
}

@media (max-width: 575px) {
  #header .header-top .header-top-right {
    width: auto;
    padding-right: 0;
  }
}

/* Breadcrumb */
#wrapper nav.breadcrumb {
  margin-bottom: 0;
  padding: 1.5rem 0;
  background-color: var(--secondary-color);
}

#wrapper nav.breadcrumb li a,
#wrapper nav.breadcrumb li:last-child {
  color: var(--white);
}

#wrapper nav.breadcrumb li a {
  transition: all ease 0.2s;
}

#wrapper nav.breadcrumb li a:hover {
  color: var(--primary-alt-color);
}

#wrapper nav.breadcrumb li::after {
  content: "•";
  color: var(--white);
}

/* Footer */
#main footer.page-footer {
  margin-bottom: 0;
}

#footer {
  padding-top: 0;
  clear: both;
}

#footer .footer-container {
  position: relative;
  padding: 6rem 0;
}

#footer .footer-container #scroll-to-top {
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-top: 0.25rem;
  border: 2px solid var(--white);
  border-radius: 2rem;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  transition: all ease 0.3s;
}

#footer .footer-container #scroll-to-top:hover {
  background-color: color-mix(in srgb, var(--white) 20%, transparent);
}

#footer .footer-container #scroll-to-top svg {
  width: 1rem;
  fill: var(--white);
  transform: rotate(180deg);
}

#footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

#footer .footer-logo .logo {
  width: 160px;
}

#footer .display-footer {
  display: flex;
}

#footer .block-contact {
  width: 25%;
}

#footer .block-contact #contact-infos .text {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 16px;
}

#footer .block-contact #contact-infos address {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 300;
  font-size: 13px;
}

#footer .block-contact #contact-infos .phone {
  display: block;
  color: var(--white);
}

#footer .block-contact #contact-infos .phone:hover {
  color: var(--primary-alt-color);
}

#footer .block-contact #contact-infos .btn {
  margin: 1.25rem 0;
}

#footer .block-contact #contact-infos .artisan-logo {
  display: block;
  width: 6rem;
}

#footer .links.col-md-6 {
  width: 25%;
}

#footer .links.col-md-6 .wrapper.col-md-6 {
  width: 100%;
}

#footer .links.col-md-6 .wrapper.col-md-6 p.h3 {
  display: none;
}

#footer .links.col-md-6 .wrapper.col-md-6 ul li {
  margin-bottom: 0.7rem;
  list-style-image: url("../svg/chevron.svg");
  font-size: 20px;
}

#footer .links.col-md-6 .wrapper.col-md-6 ul li a {
  color: var(--white);
  font-weight: 300;
}

#footer .links.col-md-6 .wrapper.col-md-6 ul li a:hover {
  color: var(--primary-alt-color);
}

#footer .block_newsletter {
  width: 50%;
  margin-top: 0;
  max-width: none;
  background-color: transparent;
}

#footer .block_newsletter #block-newsletter-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Sora", sans-serif;
  color: var(--white);
}

#footer .block_newsletter #block-newsletter-label .newsletter-icon {
  width: 2rem;
}

#footer .block_newsletter #block-newsletter-label .newsletter-icon svg {
  fill: var(--primary-color);
}

#footer .block_newsletter form input[type="email"] {
  min-height: var(--form-element-min-height);
  padding: 0 1.5rem;
  color: var(--white);
  background-color: color-mix(in srgb, var(--secondary-color) 70%, transparent);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
}

#footer .block_newsletter form input[type="email"]::placeholder {
  font-style: italic;
  color: var(--primary-alt-color);
  opacity: 1;
}

#footer .block_newsletter form .gdpr_consent {
  margin-top: 1rem;
}

#footer .block_newsletter form .gdpr_consent .psgdpr_consent_message {
  color: var(--white);
}

#footer .block_newsletter form .gdpr_consent .psgdpr_consent_message a {
  color: var(--white);
  text-decoration: underline;
}

#footer .block_newsletter form .gdpr_consent .psgdpr_consent_message a:hover {
  color: var(--primary-alt-color);
}

#footer
  .block_newsletter
  form
  .gdpr_consent
  .custom-checkbox
  input[type="checkbox"]
  + span {
  margin-bottom: 0.3rem;
  border-color: var(--white);
  border-radius: 5px;
  background-color: color-mix(in srgb, var(--secondary-color) 70%, transparent);
}

#footer
  .block_newsletter
  form
  .gdpr_consent
  .custom-checkbox
  input[type="checkbox"]
  + span
  .checkbox-checked {
  color: var(--primary-alt-color);
}

#footer
  .block_newsletter
  form
  .gdpr_consent
  .custom-checkbox
  span:last-of-type {
  font-weight: 300;
  font-size: 13px;
}

@media (max-width: 1023px) {
  #footer .display-footer {
    flex-wrap: wrap;
  }

  #footer .block-contact {
    width: 50%;
    padding-left: 0;
  }

  #footer .block-contact .title {
    display: none;
  }

  #footer .block-contact #contact-infos {
    display: inherit;
    padding: 0;
  }

  #footer .links.col-md-6 {
    width: 50%;
    padding: 0 1rem 0 1rem;
  }

  #footer .links.col-md-6 .row {
    margin: 0;
  }

  #footer .links.col-md-6 .title {
    display: none;
  }

  #footer .links.col-md-6 ul {
    display: inherit;
    background-color: transparent;
  }

  #footer .links.col-md-6 ul > li {
    padding: 0;
    border: none;
  }

  #footer .block_newsletter {
    width: 100%;
    padding-top: 1rem;
    border: none;
  }
}

@media (max-width: 767px) {
  #footer .links.col-md-6 {
    padding-left: 1rem;
  }
}

@media (max-width: 575px) {
  #footer .footer-container {
    padding: 4rem 0;
  }

  #footer .footer-container #scroll-to-top {
    top: 1rem;
    right: 0.75rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  #footer .block-contact {
    width: 100%;
    margin-bottom: 1rem;
  }

  #footer .block-contact #contact-infos {
    text-align: center;
  }

  #footer .block-contact #contact-infos .artisan-logo {
    margin: 0 auto;
  }

  #footer .links.col-md-6 {
    width: 100%;
  }

  #footer .block_newsletter {
    padding-top: 1.5rem;
  }

  #footer .block_newsletter .mobile-input-container {
    display: flex;
    justify-content: center;
    margin-top: 0.75rem;
  }
}

/* Products */
.product-flags li.product-flag.discount,
.product-flags li.product-flag.discount-amount,
.product-flags li.product-flag.discount-percentage {
  background-color: var(--quaternary-color);
}

/* Shop page */
.custom-container.padding-top:has(#root),
.custom-container.padding-top:has(#shop) {
  padding-top: 0;
}

#category #root,
#category #shop {
  z-index: 1;
  position: relative;
}

#category #root .title-container,
#category #shop .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
}

#category #root .title-container h1,
#category #shop .title-container h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#category #root .categories-container {
  justify-content: center;
}

#category #root .categories-container,
#category #shop .categories-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 4rem;
  padding: 6rem 0;
}

#category #root .categories-container .category {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% / 3) - 2rem + (2rem / 3));
  height: 350px;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all ease 0.3s;
}

#category #root .categories-container .category:hover {
  transform: scale(1.02);
}

#category #root .categories-container .category.light {
  background-color: var(--ternary-color);
}

#category #root .categories-container .category.light h2 {
  color: var(--black);
}

#category #root .categories-container .category.dark {
  background-color: var(--black);
}

#category #shop .categories-container .category {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% / 3) - 2rem + (2rem / 3));
  height: 350px;
  text-decoration: none;
}

#category #shop .categories-container .category:hover img {
  filter: brightness(0.5);
}

#category #shop .categories-container .category img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  filter: brightness(0.7);
  transition: all ease 0.4s;
}

#category #root .categories-container .category h2,
#category #shop .categories-container .category h2 {
  margin-bottom: 0;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  color: var(--white);
  font-size: 1.4rem;
}

#category #root .categories-container .category h2::after,
#category #shop .categories-container .category h2::after {
  content: "";
  display: block;
  margin: 1rem auto 0 auto;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

@media (max-width: 1279px) {
  #category #shop .categories-container .category {
    width: calc((100% / 2) - 2rem + (2rem / 2));
  }
}

@media (max-width: 1023px) {
  #category #shop .categories-container .category {
    width: 100%;
  }

  #category #shop .categories-container {
    row-gap: 2rem;
  }
}

@media (max-width: 575px) {
  #category #shop .categories-container {
    padding: 4rem 0;
  }
}

/* Product category page */
#category .block-categories {
  border-radius: var(--border-radius);
  background: var(--ternary-color);
}

#category .block-categories ul {
  margin-bottom: 0;
}

#category .block-categories ul li {
  margin-bottom: 9px;
}

#category .block-categories ul li:last-of-type {
  margin-bottom: 0;
}

#category .block-categories .h6,
#category #search_filters .h6 {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-alt-color);
}

#category .block-categories a {
  color: var(--black);
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

#category .block-categories a:hover {
  color: var(--primary-alt-color);
  text-decoration: underline;
}

#category .block-categories .category-sub-menu li {
  display: flex;
  gap: 0.5rem;
}

#category .block-categories .category-sub-menu li::before {
  content: url("../svg/arrowhead.svg");
  flex-shrink: 0;
  width: 16px;
}

#category .block-categories .category-sub-menu li[data-depth="0"] > a {
  font-weight: 500;
}

#category .block-category {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20rem;
  background-color: var(--black);
  border-radius: 8px;
}

#category .block-category h1 {
  margin-bottom: 0;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  color: var(--white);
}

#category .block-category h1::after {
  content: "";
  display: block;
  margin: 1rem auto 0 auto;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#category .block-category .category-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#category .block-category .category-cover picture {
  display: block;
  width: 100%;
  height: 100%;
}

#category .block-category .category-cover picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  filter: brightness(0.7);
}

#category .block-category .card {
  background: transparent;
}

#category #_desktop_search_filters_clear_all {
  margin: 1rem 0;
}

#category #_desktop_search_filters_clear_all .btn.btn-primary {
  display: flex;
  align-items: center;
  padding: 0.625rem;
  font-weight: 400;
  font-size: 14px;
  outline: none;
}

#category #_desktop_search_filters_clear_all .btn.btn-primary .material-icons {
  margin-right: 0.5rem;
  font-size: 15px;
}

#category #search_filters_wrapper {
  background: var(--ternary-color);
  border-radius: var(--border-radius);
}

#category #search_filters_wrapper #search_filters {
  background: transparent;
}

#category #search_filters .facet .facet-title {
  color: var(--black);
  text-transform: uppercase;
  font-size: 15px;
}

#category #search_filters .facet .facet-label a {
  font-weight: 500;
  color: var(--black);
}

#category #search_filters_wrapper #search_filters .ui-widget-header {
  background: var(--primary-alt-color);
}

#category #search_filters_wrapper #search_filters .ui-widget-content,
#category #search_filters_wrapper #search_filters .ui-slider .ui-slider-handle {
  border-color: var(--primary-alt-color);
}

#category .top-level-categories {
  margin-bottom: 1.563rem;
  padding: 1.563rem 1.25rem;
  background-color: var(--white);
  border: 1px solid var(--primary-alt-color);
  border-radius: var(--border-radius);
}

#category .top-level-categories p {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-alt-color);
  text-transform: uppercase;
}

#category .top-level-categories ul {
  margin-bottom: 0;
}

#category .top-level-categories ul li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 9px;
}

#category .top-level-categories ul li::before {
  content: url("../svg/arrowhead.svg");
  flex-shrink: 0;
  width: 16px;
}

#category .top-level-categories ul li:last-of-type {
  margin-bottom: 0;
}

#category .top-level-categories ul li a {
  color: var(--black);
  font-style: italic;
  text-decoration: none;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

#category .top-level-categories ul li a:hover {
  color: var(--primary-alt-color);
  text-decoration: underline;
}

#category .products-sort-order .select-list:hover {
  background: var(--primary-alt-color);
}

#category .products-sort-order .dropdown-menu {
  background: var(--white);
}

#category .product-miniature .highlighted-informations .quick-view {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
}

#category .product-miniature .highlighted-informations .quick-view:hover {
  color: var(--primary-alt-color);
}

#category
  .product-miniature
  .thumbnail-container:hover
  .product-description::after {
  left: 0;
  width: 100%;
  border-top: 2px solid var(--ternary-alt-color);
  opacity: 1;
}

#category .quickview .modal-header {
  background: var(--black);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

#category .quickview .modal-header .close {
  color: var(--white);
  opacity: 1;
}

#category .quickview .modal-body {
  padding-top: 30px;
}

#category .quickview .modal-content {
  background: var(--ternary-color);
  border-radius: var(--border-radius);
  border: none;
}

#category .quickview .product-cover img {
  border-radius: var(--border-radius);
}

#category
  .quickview
  .images-container
  .product-images
  > li.thumb-container
  .thumb {
  border-radius: var(--border-radius);
}

#category .product-images > li.thumb-container .thumb.selected {
  border-color: var(--primary-alt-color);
}

#category .quickview .product-discount .regular-price {
  color: var(--quinary-alt-color);
}

#category .quickview .has-discount.product-price,
#category .quickview .product-price .current-price {
  color: var(--quinary-color);
}

#category .quickview .has-discount .discount {
  background: var(--quaternary-color);
}

#category .quickview .product-prices .tax-shipping-delivery-label {
  display: none;
}

#category .quickview .modal-footer {
  display: none;
}

#category .products-selection .total-products p {
  font-weight: 500;
}

#category .products-selection .sort-by {
  color: var(--black);
  font-weight: 500;
}

#category .products-sort-order button.select-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  border-color: var(--primary-alt-color);
  border-radius: var(--border-radius);
  color: var(--black);
  font-weight: 500;
}

#category .products-sort-order button.select-title .chevron-icon {
  width: 0.4rem;
}

#category .products-sort-order button.select-title .chevron-icon svg {
  transform: rotate(90deg);
}

#category .active_filters {
  border-radius: var(--border-radius);
  background: var(--ternary-color);
}

#category .active_filters .active-filter-title {
  color: var(--black);
  text-transform: uppercase;
  font-size: 15px;
}

#category .active_filters .filter-block {
  color: var(--white);
  background: var(--primary-color);
  border-radius: var(--border-radius);
}

#category .active_filters .filter-block .close {
  color: var(--white);
}

#category .product-miniature .thumbnail-container {
  width: 100%;
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-alt-color);
}

#category .product-miniature .thumbnail-container .product-thumbnail img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

#category .product-miniature .product-title a {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
}

#category .product-miniature .regular-price {
  color: var(--quinary-alt-color);
}

#category .product-miniature .product-price-and-shipping {
  color: var(--quinary-color);
}

#category .pagination {
  font-weight: 500;
  color: var(--black);
}

#category #products .page-not-found {
  max-width: none;
  text-align: center;
}

#category #products .page-not-found h4 {
  color: var(--primary-alt-color);
  font-size: 1.2rem;
}

#category #products .page-not-found #search_widget {
  margin: 2rem auto 0 auto;
  float: none;
  max-width: 16.5rem;
  min-width: auto;
}

#category #products .page-not-found #search_widget input[type="text"] {
  min-height: var(--form-element-min-height);
  padding-left: 3rem;
  padding-right: 1.5rem;
  border: 1px solid var(--primary-alt-color);
  border-radius: var(--border-radius);
  background: var(--white);
  font-weight: 500;
  color: var(--black);
}

#category
  #products
  .page-not-found
  #search_widget
  input[type="text"]::placeholder {
  font-style: italic;
  color: var(--black);
  opacity: 0.6;
}

#category #products .page-not-found #search_widget form i {
  padding: 0.65rem;
  color: var(--black);
  opacity: 0.6;
}

@media (min-width: 992px) and (max-width: 1023px) {
  #category #left-column {
    width: calc(100% / 3);
  }

  #category #content-wrapper {
    width: calc(100% * (2 / 3));
  }
}

@media screen and (max-width: 767px) {
  #category .block-category .category-cover {
    display: block;
  }
}

/* Product page */
#product #content {
  max-width: none;
}

#product .product-cover img,
#product .product-cover .layer {
  border-radius: var(--border-radius);
}

#product .product-images > li.thumb-container .thumb.selected,
#product .product-images > li.thumb-container .thumb:hover {
  border: 2px solid var(--primary-alt-color);
}

#product .product-images > li.thumb-container .thumb {
  border-radius: var(--border-radius);
}

#product .product-container h1 {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  color: var(--black);
}

#product .product-container h1::after {
  content: "";
  display: block;
  margin-top: 1rem;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#product .product-discount .regular-price {
  color: var(--quinary-alt-color);
  font-weight: 700;
  font-size: 18px;
}

#product .product-price {
  color: var(--quinary-color);
  font-size: 22px;
}

#product .has-discount .discount {
  background: var(--quaternary-color);
}

#product .product-prices .tax-shipping-delivery-label {
  display: none;
}

#product .product-actions .control-label {
  font-weight: 700;
  color: var(--primary-alt-color);
}

#product .product-quantity .qty {
  margin-right: 1rem;
}

#product .tabs {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-alt-color);
}

#product .tabs .nav-tabs {
  border-color: var(--ternary-alt-color);
}

#product .tabs .nav-tabs .nav-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}

#product .tabs .nav-tabs .nav-link.active {
  color: var(--primary-alt-color);
  border-color: var(--primary-alt-color);
}

#product .tabs .nav-tabs .nav-link:hover {
  border-color: var(--primary-alt-color);
}

#product .tabs #description .product-description-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 5px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary-color);
  border-bottom: 1px dashed var(--primary-color);
}

#product .tabs #description .product-description-title::before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 32px;
  margin-bottom: 2px;
  background-image: url("../svg/decoration2.svg");
  background-repeat: no-repeat;
}

#product .tabs #attachments .attachment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: var(--ternary-color);
  border-radius: var(--border-radius);
}

#product .tabs #attachments .attachment:last-of-type {
  margin-bottom: 0;
}

#product .tabs #attachments .attachment h4 {
  margin-bottom: 0;
  color: var(--primary-alt-color);
  text-transform: uppercase;
}

#product .tabs #attachments .attachment p {
  margin-top: 8px;
  margin-bottom: 0;
}

#product .product-accessories p.h5 {
  margin: 2rem 0;
  font-size: 30px;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  color: var(--black);
}

#product .product-accessories .products {
  margin-bottom: 2rem;
}

#product .product-accessories .product-miniature .thumbnail-container {
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-alt-color);
}

#product
  .product-accessories
  .product-miniature
  .highlighted-informations
  .quick-view {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
}

#product
  .product-accessories
  .product-miniature
  .highlighted-informations
  .quick-view:hover {
  color: var(--primary-alt-color);
}

#product .product-accessories .product-miniature .product-title a {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
}

#product .product-accessories .product-miniature .regular-price {
  color: var(--quinary-alt-color);
}

#product .product-accessories .product-miniature .product-price-and-shipping {
  color: var(--quinary-color);
}

#product
  .product-accessories
  .product-miniature
  .thumbnail-container:hover
  .product-description::after {
  left: 0;
  width: 100%;
  border-top: 2px solid var(--ternary-alt-color);
  opacity: 1;
}

#product .quickview .modal-header {
  background: var(--black);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

#product .quickview .modal-header .close {
  color: var(--white);
  opacity: 1;
}

#product .quickview .modal-body {
  padding-top: 30px;
}

#product .quickview .modal-content {
  background: var(--ternary-color);
  border-radius: var(--border-radius);
  border: none;
}

#product .quickview .product-cover img {
  border-radius: var(--border-radius);
}

#product
  .quickview
  .images-container
  .product-images
  > li.thumb-container
  .thumb {
  border-radius: var(--border-radius);
}

#product .quickview .product-images > li.thumb-container .thumb.selected {
  border-color: var(--primary-alt-color);
}

#product .quickview .product-discount .regular-price {
  color: var(--quinary-alt-color);
}

#product .quickview .has-discount.product-price {
  color: var(--quinary-color);
}

#product .quickview .has-discount .discount {
  background: var(--quaternary-color);
}

#product .quickview .product-prices .tax-shipping-delivery-label {
  display: none;
}

#product .quickview .modal-footer {
  display: none;
}

/* TEMP */
#product .product-actions .product-add-to-cart .alert {
  display: none;
}

@media (max-width: 1023px) {
  #product .tabs #attachments .attachment {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  #product .product-quantity .qty {
    margin-right: 0.5rem;
  }
}

@media (max-width: 399px) {
  #product .product-quantity {
    flex-direction: column;
  }

  #product .product-quantity .qty {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

/* Cart page */
#cart .cart-grid {
  margin-bottom: 8rem;
}

#cart .cart-grid h1 {
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  color: var(--white);
}

#cart .cart-grid h1::after {
  content: "";
  display: block;
  margin-top: 1rem;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#cart .cart-container {
  margin-bottom: 4rem;
  border: 2px solid var(--ternary-alt-color);
  border-radius: var(--border-radius);
  background: var(--white);
}

#cart .cart-container .cart-overview {
  padding: 0;
}

#cart .cart-container .cart-overview .no-items {
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 600;
}

#cart .cart-container .cart-overview .cart-item {
  padding: 2rem 1rem;
  border-bottom: 2px solid var(--ternary-alt-color);
}

#cart .cart-container .cart-overview .cart-item:last-of-type {
  border: none;
}

#cart .product-line-grid-left img {
  border-radius: var(--border-radius);
}

#cart .cart-container .product-line-grid-body > .product-line-info > .label {
  color: var(--black);
  font-size: 16px;
}

#cart
  .cart-container
  .product-line-grid-body
  > .product-line-info
  > a.label:hover {
  color: var(--primary-alt-color);
}

#cart .cart-container .product-line-grid-body .product-price {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--quinary-color);
}

#cart .cart-container .product-line-grid-body .product-discount .regular-price {
  color: var(--quinary-alt-color);
}

#cart .cart-container .product-line-grid-body .has-discount .discount {
  background: var(--quaternary-color);
  font-weight: 500;
  font-size: 14px;
}

#cart .bootstrap-touchspin input[type="number"] {
  width: 3rem !important;
  padding-left: 1rem !important;
}

#cart .cart-container .product-line-grid-right .price {
  display: flex;
  align-items: center;
  min-height: 3rem;
}

#cart .cart-container .product-line-grid-right .product-price {
  color: var(--quinary-color);
}

#cart .cart-container .product-line-grid-right .product-price strong {
  font-weight: 600;
}

#cart
  .product-line-grid-right
  .cart-line-product-actions
  .remove-from-cart-container {
  display: flex;
  align-items: center;
  min-height: 3rem;
}

#cart .product-line-grid-right .cart-line-product-actions .remove-from-cart {
  display: inline-flex;
  margin-top: 0;
}

#cart
  .product-line-grid-right
  .cart-line-product-actions
  .remove-from-cart
  .bin-icon {
  display: inline-flex;
  width: 1.25rem;
  fill: var(--quinary-color);
  transition: all ease 0.4s;
}

#cart
  .product-line-grid-right
  .cart-line-product-actions
  .remove-from-cart:hover
  .bin-icon {
  fill: var(--black);
}

#cart .cart-summary {
  background: var(--ternary-color);
  border-radius: var(--border-radius);
}

#cart .cart-summary .cart-detailed-subtotals {
  padding: 2rem;
  border-bottom: 2px solid var(--ternary-alt-color);
}

#cart .cart-summary-line .label {
  text-transform: uppercase;
  color: var(--black);
}

#cart .cart-summary-line .value {
  font-weight: 500;
  color: var(--quinary-color);
  text-transform: uppercase;
}

#cart .cart-summary-line#cart-subtotal-products .label {
  font-weight: 700;
}

#cart .card-block.cart-summary-totals .cart-summary-line.cart-total {
  padding: 1rem;
  border: 1px solid var(--ternary-alt-color);
  border-radius: var(--border-radius);
  background-color: var(--white);
}

#cart .card-block.cart-summary-totals .cart-summary-line.cart-total .label {
  text-transform: uppercase;
  color: var(--black);
}

#cart .card-block.cart-summary-totals .cart-summary-line.cart-total .value {
  font-weight: 700;
}

#cart .card-block.cart-summary-totals {
  padding: 1.25rem;
}

#cart .card-block.checkout {
  padding-bottom: 2rem;
}

#cart .cart-grid-body .btn-svg {
  gap: 1.2rem;
}

#cart .cart-grid-body .btn-svg .arrow-left-icon {
  width: 1.7rem;
}

@media (min-width: 992px) and (max-width: 1023px) {
  #cart .cart-grid-body {
    width: 100%;
  }

  #cart .cart-grid-right {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  #cart .cart-container,
  #cart .cart-grid-body {
    margin-bottom: 2rem;
  }

  #cart .cart-grid {
    margin-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  #cart .card-block.checkout {
    padding: 0 1.25rem 2rem;
  }
}

body#checkout #header .header-nav {
  max-height: 50px;
  padding: 0;
}

body#checkout section.checkout-step {
  padding: 0.625rem 0;
}

body#checkout section.checkout-step a {
  color: var(--primary-alt-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

body#checkout section.checkout-step a:hover {
  color: var(--black);
}

body#checkout section.checkout-step small {
  color: var(--black);
}

body#checkout section.checkout-step .step-title {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-bottom: 2px solid var(--ternary-alt-color);
  color: var(--black);
}

body#checkout section.checkout-step.-current + .checkout-step .step-title {
  border-top: 2px solid var(--ternary-alt-color);
}

body#checkout section.checkout-step.-reachable.-complete h1 .done {
  color: var(--primary-alt-color);
}

body#checkout section.checkout-step .step-number {
  border-color: var(--black);
}

body#checkout section.checkout-step.-reachable.-current .step-number {
  background-color: var(--black);
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-edit {
  margin-top: 5px;
  text-transform: uppercase;
  color: var(--black) !important;
}

body#checkout section.checkout-step .add-address a {
  color: var(--primary-alt-color);
  text-decoration: none;
}

body#checkout section.checkout-step .add-address a:hover {
  color: var(--white);
}

body#checkout #delivery-address input[type="checkbox"] {
  accent-color: var(--primary-alt-color);
}

body#checkout #delivery-address input[type="checkbox"] {
  -webkit-appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  cursor: pointer;
}

body#checkout #delivery-address input[type="checkbox"] + label {
  vertical-align: top;
}

body#checkout #delivery-address input[type="checkbox"]::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  pointer-events: none;
  cursor: pointer;
  border: 1px solid var(--primary-alt-color);
  background: var(--ternary-alt-color);
  border-radius: 5px;
}

body#checkout #delivery-address input[type="checkbox"]::after {
  content: "check";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: -0.05rem;
  font-family: "Material Icons", sans-serif;
  font-size: 1.25rem;
  color: var(--primary-alt-color);
  opacity: 0;
  visibility: hidden;
}

body#checkout #delivery-address input[type="checkbox"]:checked::after {
  opacity: 1;
  visibility: visible;
}

body#checkout section.checkout-step .address-item {
  background-color: var(--ternary-color);
  border-radius: var(--border-radius);
}

body#checkout section.checkout-step .address-item.selected {
  background-color: var(--ternary-color);
  border: 3px solid var(--primary-color);
}

body#checkout section.checkout-step .address-alias {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-alt-color);
}

body#checkout section.checkout-step .address {
  font-weight: 400;
  line-height: normal;
}

body#checkout section.checkout-step hr {
  border-top: 2px solid var(--ternary-alt-color);
}

body#checkout section.checkout-step .address-footer {
  padding: 1.5rem 0.625rem;
}

body#checkout section.checkout-step .btn.btn-svg.edit-address,
body#checkout section.checkout-step .btn.btn-svg.delete-address {
  display: inline-flex;
  text-decoration: none;
}

body#checkout section.checkout-step .btn.btn-svg.edit-address {
  color: var(--primary-alt-color) !important;
}

body#checkout section.checkout-step .btn.btn-svg.edit-address:hover {
  color: var(--white) !important;
}

body#checkout section.checkout-step .btn.btn-svg.delete-address {
  color: var(--white) !important;
}

body#checkout .cancel-address.btn.btn-svg {
  display: inline-flex;
  margin: 0 1rem 0 0;
  text-decoration: none;
}

body#checkout .cancel-address.btn.btn-svg:hover {
  color: var(--white);
}

body#checkout .cancel-address.btn.btn-svg .icon.arrow-left-icon {
  width: 1.7rem;
}

body#checkout #checkout-addresses-step .js-address-form h2 {
  text-transform: uppercase;
  padding-top: 1rem;
}

body#checkout section.checkout-step .delivery-options .delivery-option {
  background: var(--ternary-color);
  border-radius: var(--border-radius);
  border-right: 0;
}

body#checkout #delivery textarea {
  min-height: var(--form-element-min-height);
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--primary-alt-color);
  border-radius: var(--border-radius);
  background: var(--white);
  font-weight: 500;
  color: var(--black);
}

body#checkout .cart-grid-right .card {
  border-radius: var(--border-radius);
  background: var(--ternary-color);
}

body#checkout .cart-grid-right .card .card-block {
  padding: 0;
}

body#checkout .cart-grid-right .card .cart-summary-products {
  padding: 2rem;
}

body#checkout .cart-grid-right .card .cart-summary-products .summary-string {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
}

body#checkout .cart-grid-right .card .cart-summary-products .show-details a {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-products
  #cart-summary-product-list
  .product-name
  a {
  color: var(--black);
  font-weight: 500;
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-products
  #cart-summary-product-list
  .product-name
  a:hover {
  color: var(--primary-color);
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-products
  #cart-summary-product-list
  .product-price {
  color: var(--quinary-color);
  font-weight: 500;
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-products
  #cart-summary-product-list
  .product-line-info.text-muted {
  color: var(--black) !important;
}

body#checkout .cart-grid-right .card .cart-summary-subtotals-container {
  padding: 1.25rem 2rem;
  border-top: 2px solid var(--ternary-alt-color);
  border-bottom: 2px solid var(--ternary-alt-color);
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-subtotals-container
  .cart-summary-line
  .label {
  text-transform: uppercase;
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-subtotals-container
  .cart-summary-line
  .value {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--quinary-color);
}

body#checkout .cart-grid-right .card .cart-summary-totals {
  padding: 1.25rem 2rem 2rem;
}

body#checkout .cart-grid-right .card .cart-summary-totals .cart-summary-line {
  padding: 1rem;
  border: 1px solid var(--ternary-alt-color);
  border-radius: var(--border-radius);
  background-color: var(--white);
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-totals
  .cart-summary-line
  .label {
  text-transform: uppercase;
  color: var(--black);
}

body#checkout
  .cart-grid-right
  .card
  .cart-summary-totals
  .cart-summary-line
  .value {
  text-transform: uppercase;
  color: var(--quinary-color);
}

body#checkout #footer {
  padding: 0;
}

#checkout h1.main-title {
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  color: var(--white);
}

#checkout h1.main-title::after {
  content: "";
  display: block;
  margin-top: 1rem;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#checkout .checkout-process-container {
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-alt-color);
}

#cart .block-promo {
  margin-bottom: 1.25rem;
}

#cart .promo-code-button {
  padding-bottom: 0;
}

#cart .promo-code-button a,
#cart #promo-code a.cancel-promo {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
}

#cart .promo-code-button a:hover,
#cart #promo-code a.cancel-promo:hover {
  color: var(--black);
}

#cart .block-promo .promo-code {
  padding: 0 1.25rem;
}

#cart .block-promo .promo-input {
  width: 100%;
  margin-right: 0;
  text-indent: 0;
  border-color: var(--primary-alt-color);
}

#cart .block-promo .input-group button {
  margin-top: 0;
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: none;
  text-transform: uppercase;
}

#cart .block-promo .promo-code-button.cancel-promo[aria-expanded="true"] {
  margin-top: 0.5rem;
}

#cart .block-promo .promo-code .alert-danger {
  color: var(--error);
  background: var(--white);
}

#cart .block-promo .promo-code .alert-danger::after {
  border-bottom-color: var(--error);
}

#cart .block-promo .promo-name {
  padding: 0 2rem 0.5rem;
}

#cart .block-promo .promo-name .cart-summary-line span {
  color: var(--quinary-color);
  font-weight: 500;
}

#cart .block-promo .promo-name .cart-summary-line span.label {
  color: var(--black);
  font-weight: 400;
}

#cart .block-promo .cart-summary-line .bin-icon {
  display: inline-flex;
  width: 1.25rem;
  fill: var(--quinary-color);
  transition: all ease 0.4s;
}

#cart .block-promo .cart-summary-line a:hover .bin-icon {
  fill: var(--black);
}

#cart .block-promo .cart-summary-line .price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#cart .block-promo.promo-highlighted {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

#cart .cart-grid-right .promo-discounts .cart-summary-line .label .code {
  color: var(--quinary-color);
}

/* Registration page */
#registration .page-header {
  z-index: 1;
  position: relative;
  margin-bottom: 0;
}

#registration .page-header h1 {
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  text-align: center;
  color: var(--white);
}

#registration .page-header h1::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#registration #content {
  background-color: var(--ternary-color);
  border-radius: var(--border-radius);
  margin-bottom: 8rem;
  padding: 2rem;
}

#registration #content .login-link {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  font-weight: 700;
  font-size: 17px;
}

#registration #content .login-link .decoration,
#registration #content .login-link .decoration-rotated {
  width: 8rem;
}

#registration #content .login-link .decoration-rotated {
  transform: rotate(180deg) scaleX(-1);
}

#registration #content .login-link .first-text {
  color: var(--black);
}

#registration #content .login-link .second-text {
  color: var(--primary-color);
}

#registration .register-form a {
  color: var(--primary-color);
  text-decoration: underline;
}

#registration .register-form a:hover {
  color: var(--black);
}

/* Authentication page */
#authentication .page-header {
  margin-bottom: 0;
}

#authentication .page-header h1 {
  position: relative;
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  text-align: center;
  color: var(--white);
}

#authentication .page-header h1::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#authentication #content {
  background-color: var(--ternary-color);
  border-radius: var(--border-radius);
  margin-bottom: 8rem;
  padding: 2rem;
}

#authentication #content .forgot-password {
  text-align: left;
}

#authentication #content .forgot-password a {
  position: relative;
  padding: 0;
  margin-right: 10px;
  color: var(--black);
  text-decoration: none;
  transition: all ease 0.2s;
  font-weight: 500;
}

#authentication #content .forgot-password a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transition: all ease 0.2s;
}

#authentication #content .forgot-password a:hover {
  text-decoration: none;
  color: var(--primary-alt-color);
}

#authentication #content .forgot-password a:hover::after {
  opacity: 0;
  visibility: hidden;
}

#authentication #content .no-account {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  font-weight: 700;
  font-size: 17px;
  text-align: left;
}

#authentication #content .no-account .decoration,
#authentication #content .no-account .decoration-rotated {
  width: 8rem;
}

#authentication #content .no-account .decoration-rotated {
  transform: rotate(180deg) scaleX(-1);
}

#authentication #content .no-account .first-text {
  color: var(--black);
}

#authentication #content .no-account .second-text {
  color: var(--primary-color);
}

/* Password reset page */
#password .page-header {
  margin-bottom: 0;
}

#password .page-header h1 {
  position: relative;
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  text-align: center;
  color: var(--white);
}

#password .page-header h1::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#password #content {
  background-color: var(--ternary-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 640px;
  margin: 0 auto 1.563rem auto;
}

#password .send-renew-password-link {
  padding: 0;
}

#password .forgotten-password .form-fields .center-email-fields {
  flex-direction: column;
  align-items: flex-start;
}

#password .forgotten-password .form-fields label.required {
  width: auto;
}

#password .forgotten-password .form-fields .email {
  width: 100%;
  margin-bottom: 1rem;
}

#password .page-footer {
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

#password .page-footer .btn.btn-ternary.btn-svg .icon.arrow-left-icon {
  width: 1.7rem;
}

#password .ps-alert-success {
  padding: 0;
}

#password .renew-password [type="submit"] {
  margin-left: 0;
}

#password .renew-password .email {
  padding-bottom: 1rem;
  font-weight: 700;
  color: var(--black);
}

/* Account page */
#my-account .custom-container.padding-top {
  padding-top: 0;
}

#my-account #main .page-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
  margin-bottom: 0;
}

#my-account #main .page-header h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#my-account #content {
  padding: 3rem 0 1rem 0;
  margin-bottom: 0;
}

#my-account #content .links a {
  transition: all ease 0.3s;
}

#my-account #content .links a:focus {
  text-decoration: none;
  outline: none;
}

/* #my-account #content .links a:focus .link-item {
    outline: 5px auto -webkit-focus-ring-color;
} */

#my-account #content .links a:hover {
  transform: scale(1.02);
}

#my-account #content .link-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 200px;
  background: var(--ternary-color);
  border-radius: var(--border-radius);
  color: var(--primary-alt-color);
}

#my-account #content .link-item i {
  color: var(--black);
}

#my-account #content .link-item .decoration-rotated {
  width: 8rem;
  transform: rotate(180deg) scaleX(-1);
}

#my-account #main footer.page-footer .btn-svg .logout-icon {
  display: inline-flex;
  width: 1.5rem;
  stroke: var(--white);
}

#my-account #main footer.page-footer {
  margin-bottom: 3rem;
}

/* Global for all account pages */
.account-links {
  margin-bottom: 2rem;
}

.account-links .btn.btn-ternary.btn-svg .icon.arrow-left-icon {
  width: 1.7rem;
}

.account-links .btn.btn-primary.btn-svg .icon.home-icon {
  fill: none;
  stroke: var(--white);
}

.page-customer-account #content {
  padding: 0;
}

/* Adresses page */
#addresses .page-header {
  margin-bottom: 0;
}

#addresses .page-header h1 {
  z-index: 1;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  color: var(--white);
}

#addresses .page-header h1::after {
  content: "";
  display: block;
  margin-top: 1rem;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#addresses .address {
  color: var(--black);
  border-radius: var(--border-radius);
  background-color: var(--ternary-color);
}

#addresses .address .address-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

#addresses .address .address-body h4 {
  color: var(--primary-alt-color);
  text-transform: uppercase;
}

#addresses .address .address-body address {
  margin-bottom: 0;
}

#addresses .address .address-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--ternary-alt-color);
}

#addresses .address .address-footer a.btn.btn-primary {
  color: var(--white);
}

#addresses .address .address-footer a.btn.btn-ternary {
  color: var(--primary-alt-color);
}

#addresses .address .address-footer a.btn.btn-ternary:hover {
  color: var(--white);
}

#addresses .address .address-footer span.bin-icon {
  width: 1.2rem;
}

#addresses .addresses-footer a {
  color: var(--primary-alt-color);
}

#addresses .addresses-footer a:hover {
  color: var(--white);
}

#addresses .addresses-footer span {
  margin-top: 0;
  font-size: unset;
}

/* History page */
#history .custom-container.padding-top {
  padding-top: 0;
}

#history #main .page-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
  margin-bottom: 0;
}

#history #main .page-header h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#history #main #content {
  padding-top: 2rem;
}

#history #main .page-content h6 {
  color: var(--black);
  font-size: 17px;
}

.page-customer-account #content table td:not(.order-actions) a {
  color: var(--primary-alt-color);
  transition: all ease 0.2s;
}

.page-customer-account #content table td:not(.order-actions) a:hover {
  color: var(--black);
}

.page-customer-account #content .order-actions a {
  position: relative;
  padding: 0;
  margin-right: 10px;
  color: var(--primary-alt-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

.page-customer-account #content .order-actions a:hover {
  color: var(--black);
}

.page-customer-account #content .order-actions a:last-of-type {
  margin-right: 0;
}

/* Order detail page */
#order-detail #order-infos .btn {
  margin-top: 1rem;
}

#order-detail .addresses #delivery-address,
#order-detail .addresses #invoice-address {
  margin: 0 1rem 2rem;
  background-color: var(--ternary-color);
  border-radius: var(--border-radius);
}

#order-detail .addresses #delivery-address address,
#order-detail .addresses #invoice-address address {
  margin-bottom: 0;
}

#order-detail .addresses #delivery-address h4,
#order-detail .addresses #invoice-address h4 {
  color: var(--primary-alt-color);
  text-transform: uppercase;
}

#order-detail #order-products a {
  color: var(--primary-alt-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

#order-detail #order-products a:hover {
  color: var(--black);
}

#order-detail .box.messages {
  padding-top: 0;
  padding-bottom: 0;
}

#order-detail .box.messages .messages-container {
  padding: 1rem;
  background: var(--ternary-color);
  border-radius: var(--border-radius);
}

#order-detail .box.messages .messages-container h3 {
  color: var(--primary-alt-color);
}

#order-detail .box.messages .messages-container .message {
  margin: 0 0 1rem 0;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid var(--ternary-alt-color);
}

#order-detail .box.messages .messages-container .message:last-of-type {
  margin-bottom: 0;
}

#order-detail .box.messages .messages-container .message > div {
  margin-bottom: 0;
}

#order-detail .box.messages .messages-container .message .informations {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Order slip page */
#order-slip .custom-container.padding-top {
  padding-top: 0;
}

#order-slip #main .page-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
  margin-bottom: 0;
}

#order-slip #main .page-header h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#order-slip #main #content {
  padding-top: 2rem;
}

#order-slip #main .page-content h6 {
  color: var(--black);
  font-size: 17px;
}

#order-slip #main #content table a {
  color: var(--primary-alt-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

#order-slip #main #content table a:hover {
  color: var(--black);
}

/* Contact page */
#contact .breadcrumb {
  text-align: center;
}

#contact .padding-top {
  padding-top: 0;
}

#contact #left-column {
  width: calc(100% / 3);
}

#contact #content-wrapper {
  padding-top: 6rem;
  width: calc(100% * (2 / 3));
}

#contact #content-wrapper .page-content,
#contact #content-wrapper .page-content .contact-form {
  padding-top: 0;
  padding-left: 4rem;
}

#contact .contact-rich {
  margin-bottom: 3rem;
}

#contact .contact-rich .contact-container {
  position: relative;
  padding: 6rem 1rem 3rem 0;
  background: var(--ternary-color);
}

#contact .contact-rich .contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 200%;
  background: var(--ternary-color);
}

#contact .contact-rich .block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

#contact .contact-rich .block:last-of-type {
  margin-bottom: 0;
}

#contact .contact-rich .block.phone,
#contact .contact-rich .block.email {
  align-items: center;
}

#contact .contact-rich .data,
#contact .contact-rich .data a {
  color: var(--black);
}

#contact .contact-rich .data a:hover {
  text-decoration: underline;
}

#contact .contact-rich .icon {
  width: 1.5rem;
  float: none;
  fill: var(--primary-color);
}

#contact .contact-rich .phone-icon {
  display: flex;
  justify-content: center;
}

#contact .contact-rich .phone-icon svg {
  width: 1rem;
}

#contact .contact-rich .mail-icon {
  display: flex;
  flex-shrink: 0;
}

#contact .contact-rich .company-name,
#contact .contact-rich .phone,
#contact .contact-rich .email {
  font-weight: 700;
}

#contact .contact-rich .decoration-image {
  position: relative;
  padding-right: 4rem;
}

#contact .contact-rich .decoration-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50%;
  width: 50vw;
  background: var(--ternary-color);
}

#contact .contact-rich .decoration-image img {
  position: relative;
  max-width: 100%;
}

#contact .contact-form .informations {
  font-weight: 700;
}

#contact .contact-form .informations span {
  font-weight: 400;
}

#contact #content-wrapper .page-content {
  padding-right: 0;
}

#contact #content-wrapper .page-content form h3 {
  display: none;
}

@media (max-width: 1023px) {
  #contact #content-wrapper .page-content {
    padding-left: 2rem;
  }

  #contact #left-column {
    width: 50%;
  }

  #contact #content-wrapper {
    width: 50%;
  }
}

@media (min-width: 767px) and (max-width: 1023px) {
  #contact .wpcf7 .double {
    flex-direction: column;
    gap: 0;
  }

  #contact .wpcf7 .double label {
    width: 100%;
  }
}

@media (max-width: 767px) {
  #contact .contact-rich .decoration-image::before {
    width: 100vw;
  }

  #contact .contact-rich .decoration-image img {
    max-width: 70%;
  }

  #contact #left-column {
    width: 100%;
  }

  #contact #content-wrapper {
    width: 100%;
    padding-top: 2rem;
  }

  #contact #content-wrapper .page-content {
    padding-left: 0;
  }
}

/* CMS pages */
#cms #content {
  padding: 0;
  margin: 0;
}

#cms .breadcrumb {
  text-align: center;
}

/* News category page */
#cms .custom-container.padding-top {
  padding-top: 0;
}

#cms #main .page-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
  margin-bottom: 0;
}

#cms #main .page-header h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#cms .page-category-pages-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

#cms .page-category-pages-list .page-category-page {
  display: flex;
  flex-direction: column;
  width: calc((100% / 3) - 2rem + (2rem / 3));
  padding: 1rem;
  background-color: var(--ternary-color);
  border-radius: var(--border-radius);
}

#cms .page-category-pages-list .page-category-page .title {
  text-align: center;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

#cms .page-category-pages-list .page-category-page .title a {
  color: var(--black);
  font-weight: 700;
  font-size: 1.2rem;
}

#cms .page-category-pages-list .page-category-page .title .decoration {
  display: block;
  width: 7rem;
  transform: rotate(180deg);
  margin: 0 auto;
}

#cms .page-category-pages-list .page-category-page .content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 100%;
}

#cms .page-category-pages-list .page-category-page .content-container .content {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border: 1px solid var(--ternary-alt-color);
  border-radius: var(--border-radius);
}

#cms
  .page-category-pages-list
  .page-category-page
  .content-container
  .content
  p:last-of-type {
  margin-bottom: 0;
}

#cms
  .page-category-pages-list
  .page-category-page
  .content-container
  .btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  #cms .page-category-pages-list .page-category-page {
    width: calc((100% / 2) - 2rem + (2rem / 2));
  }
}

@media (max-width: 575px) {
  #cms .page-category-pages-list .page-category-page {
    width: 100%;
  }
}

/* Search page */
#search .custom-container.padding-top {
  padding-top: 0;
}

#search #main .page-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
  margin-bottom: 0;
}

#search #main .page-header h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#search #js-product-list-top {
  margin-top: 1.5rem;
}

#search .products-selection .total-products p {
  font-weight: 500;
}

#search .products-sort-order button.select-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  border-color: var(--primary-alt-color);
  border-radius: var(--border-radius);
  color: var(--black);
  font-weight: 500;
}

#search .products-sort-order button.select-title .chevron-icon {
  width: 0.4rem;
}

#search .products-sort-order button.select-title .chevron-icon svg {
  transform: rotate(90deg);
}

#search .products-sort-order .select-list:hover {
  background: var(--primary-alt-color);
}

#search .product-miniature .highlighted-informations .quick-view {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
}

#search .product-miniature .highlighted-informations .quick-view:hover {
  color: var(--primary-alt-color);
}

#search
  .product-miniature
  .thumbnail-container:hover
  .product-description::after {
  left: 0;
  width: 100%;
  border-top: 2px solid var(--ternary-alt-color);
  opacity: 1;
}

#search .quickview .modal-header {
  background: var(--black);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

#search .quickview .modal-header .close {
  color: var(--white);
  opacity: 1;
}

#search .quickview .modal-body {
  padding-top: 30px;
}

#search .quickview .modal-content {
  background: var(--ternary-color);
  border-radius: var(--border-radius);
  border: none;
}

#search .quickview .product-cover img {
  border-radius: var(--border-radius);
}

#search
  .quickview
  .images-container
  .product-images
  > li.thumb-container
  .thumb {
  border-radius: var(--border-radius);
}

#search .product-images > li.thumb-container .thumb.selected {
  border-color: var(--primary-alt-color);
}

#search .quickview .product-discount .regular-price {
  color: var(--quinary-alt-color);
}

#search .quickview .has-discount.product-price,
#search .quickview .product-price .current-price {
  color: var(--quinary-color);
}

#search .quickview .has-discount .discount {
  background: var(--quaternary-color);
}

#search .quickview .product-prices .tax-shipping-delivery-label {
  display: none;
}

#search .quickview .modal-footer {
  display: none;
}

#search .product-miniature .thumbnail-container {
  width: 100%;
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-alt-color);
}

#search .product-miniature .thumbnail-container .product-thumbnail img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

#search .product-miniature .product-title a {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 700;
}

#search .product-miniature .regular-price {
  color: var(--quinary-alt-color);
}

#search .product-miniature .product-price-and-shipping {
  color: var(--quinary-color);
}

#search .pagination {
  font-weight: 500;
  color: var(--black);
}

#search #products .page-not-found {
  max-width: none;
  text-align: center;
}

#search #products .page-not-found h4 {
  color: var(--primary-alt-color);
  font-size: 1.2rem;
}

#search #products .page-not-found #search_widget {
  margin: 2rem auto 0 auto;
  float: none;
  max-width: 16.5rem;
  min-width: auto;
}

#search #products .page-not-found #search_widget input[type="text"] {
  min-height: var(--form-element-min-height);
  padding-left: 3rem;
  padding-right: 1.5rem;
  border: 1px solid var(--primary-alt-color);
  border-radius: var(--border-radius);
  background: var(--white);
  font-weight: 500;
  color: var(--black);
}

#search
  #products
  .page-not-found
  #search_widget
  input[type="text"]::placeholder {
  font-style: italic;
  color: var(--black);
  opacity: 0.6;
}

#search #products .page-not-found #search_widget form i {
  padding: 0.65rem;
  color: var(--black);
  opacity: 0.6;
}

/* 404 page */
#pagenotfound .custom-container.padding-top {
  padding-top: 0;
}

#pagenotfound #main .page-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
  margin-bottom: 0;
}

#pagenotfound #main .page-header h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#pagenotfound .not-found-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}

#pagenotfound .not-found-container .error-code {
  color: var(--primary-alt-color);
  font-size: 2.5rem;
  font-weight: 700;
}

#pagenotfound .not-found-container .btn.btn-primary.btn-svg .icon.home-icon {
  fill: none;
  stroke: var(--white);
}

/* Contact Form 7 module */
.wpcf7 textarea.form-control {
  padding: 1rem 1.5rem;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.wpcf7 input.form-control {
  min-height: var(--form-element-min-height);
  font-size: 16px;
  font-weight: 500;
}

.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
  accent-color: var(--primary-alt-color);
}

.wpcf7 input[type="radio"] {
  -webkit-appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  outline: none;
  border: 1px solid var(--primary-alt-color);
  background: var(--ternary-alt-color);
}

.wpcf7 input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  height: 10px;
  /* margin: 20% auto; */
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.wpcf7 input[type="radio"]:checked::before {
  background: var(--primary-alt-color);
}

.wpcf7 input[type="checkbox"] {
  -webkit-appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  cursor: pointer;
}

.wpcf7 input[type="checkbox"]::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  pointer-events: none;
  cursor: pointer;
  border: 1px solid var(--primary-alt-color);
  background: var(--ternary-alt-color);
  border-radius: 5px;
}

.wpcf7 input[type="checkbox"]::after {
  content: "check";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: -0.05rem;
  font-family: "Material Icons", sans-serif;
  font-size: 1.25rem;
  color: var(--primary-alt-color);
  opacity: 0;
  visibility: hidden;
}

.wpcf7 input[type="checkbox"]:checked::after {
  opacity: 1;
  visibility: visible;
}

.wpcf7 label {
  font-weight: 400;
  color: var(--black);
}

.wpcf7 label.inline-label {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.wpcf7 .double {
  display: flex;
  gap: 1rem;
  margin: 24px 0;
}

.wpcf7 .double label {
  width: calc((100% / 2) - 1rem + (1rem / 2));
}

.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 0.875rem;
  color: var(--error);
}

.wpcf7 .wpcf7-form-control-wrap {
  margin-top: 10px;
}

.wpcf7 .wpcf7-form-control-wrap.civility {
  margin-top: 5px;
}

.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-recaptcha) {
  margin: 0;
}

.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
  vertical-align: top;
}

.wpcf7 .submit-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1rem;
}

.wpcf7 label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.wpcf7 label a:hover {
  color: var(--black);
}

#ets_cft_page .breadcrumb {
  text-align: center;
}

#ets_cft_page .breadcrumb ul {
  margin-bottom: 0;
}

#ets_cft_page .page-header {
  margin-bottom: 0;
}

#ets_cft_page .page-header h1 {
  z-index: 1;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  color: var(--white);
}

#ets_cft_page .page-header h1::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#ets_cft_page #content {
  background-color: var(--ternary-color);
  border-radius: var(--border-radius);
  margin-bottom: 8rem;
  padding: 2rem;
}

@media (max-width: 767px) {
  .wpcf7 .double {
    gap: 0.5rem;
  }

  .wpcf7 .double label {
    width: calc((100% / 2) - 0.5rem + (0.5rem / 2));
  }
}

@media (max-width: 500px) {
  .wpcf7 .double {
    flex-direction: column;
    gap: 0;
  }

  .wpcf7 .double label {
    width: 100%;
  }
}

/* RGPD module */
#module-psgdpr-gdpr .page-header {
  margin-bottom: 0;
}

#module-psgdpr-gdpr .page-header h1 {
  z-index: 1;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 2.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: none;
  color: var(--white);
}

#module-psgdpr-gdpr .page-header h1::after {
  content: "";
  display: block;
  margin-top: 1rem;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

#module-psgdpr-gdpr .psgdprinfo17 h2 {
  margin-bottom: 1rem;
  color: var(--primary-alt-color);
  text-transform: uppercase;
  font-size: 1rem;
}

#module-psgdpr-gdpr .psgdprinfo17 .actions-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

#module-psgdpr-gdpr .psgdprinfo17 .actions-links a {
  margin: 0;
}

#module-psgdpr-gdpr .psgdprinfo17:first-of-type {
  margin-top: 0;
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-alt-color);
  background-color: var(--white);
}

#module-psgdpr-gdpr .psgdprinfo17:last-of-type {
  margin-bottom: 2rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--ternary-color);
  background-color: var(--ternary-color);
}

#module-psgdpr-gdpr .psgdprinfo17:last-of-type a {
  position: relative;
  color: var(--primary-alt-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all ease 0.2s;
}

#module-psgdpr-gdpr .psgdprinfo17:last-of-type a:hover {
  color: var(--black);
}

/* Email subscription module */
#module-ps_emailsubscription-verification .custom-container.padding-top {
  padding-top: 0;
}

#module-ps_emailsubscription-verification #main .page-header {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--top-wrapper-bg-height);
  margin-bottom: 0;
}

#module-ps_emailsubscription-verification #main .page-header h1 {
  color: var(--ternary-alt-color);
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
}

#module-ps_emailsubscription-verification #content .alert {
  margin-top: 25px;
}

/* WEB&DESIGN blocks */
.wd-block.banner-section {
  position: relative;
  height: 650px;
}

.wd-block.banner-section.no-image {
  height: var(--top-wrapper-bg-height);
}

.wd-block.banner-section.no-image .background-image {
  filter: none;
}

.wd-block.banner-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
}

.wd-block.banner-section .content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}

.wd-block.banner-section .content h1 {
  margin-bottom: 0;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 40px;
  text-transform: none;
  text-align: center;
  color: var(--white);
}

.wd-block.banner-section .content h1::after {
  content: "";
  display: block;
  margin: 1rem auto 0 auto;
  height: 4px;
  width: 100px;
  background-color: var(--primary-alt-color);
}

.wd-block.hero-section {
  position: relative;
  height: 100vh;
}

.wd-block.hero-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wd-block.hero-section .content {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  height: 100%;
  padding-bottom: 1rem;
}

.wd-block.hero-section .content .text {
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-weight: 200;
  font-size: 34px;
  line-height: normal;
  text-align: center;
  margin-bottom: 0;
  padding: 0 1rem;
}

.wd-block.hero-section .content .down-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-top: 0.25rem;
  border: 2px solid var(--white);
  border-radius: 2.5rem;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  transition: all ease 0.3s;
}

.wd-block.hero-section .content .down-arrow:hover {
  background-color: color-mix(in srgb, var(--white) 20%, transparent);
}

.wd-block.hero-section .content .down-arrow svg {
  width: 1rem;
  fill: var(--white);
  transition: all ease 0.3s;
}

.wd-block.hero-section .content .down-arrow:hover svg {
  transform: translateY(0.3rem);
}

@media (max-width: 767px) {
  .wd-block.hero-section .content .text {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .wd-block.hero-section .content .text br {
    display: none;
  }

  .wd-block.hero-section .content .down-arrow {
    width: 4rem;
    height: 4rem;
    border-radius: 2rem;
  }
}

.wd-block.overlay-image-content-right {
  position: relative;
  margin-bottom: 4rem;
}

.wd-block.overlay-image-content-right .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wd-block.overlay-image-content-right .block-content {
  display: flex;
  gap: 6rem;
}

.wd-block.overlay-image-content-right .images {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(50% - 3rem);
  padding-top: 2rem;
}

.wd-block.overlay-image-content-right .images .first-image {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 10px 10px 60px #00000033;
}

.wd-block.overlay-image-content-right .images .second-image {
  transform: translateY(4rem);
}

.wd-block.overlay-image-content-right .content {
  z-index: 1;
  position: relative;
  width: calc(50% - 3rem);
  padding: 6rem 12rem 2rem 0;
  color: var(--white);
}

.wd-block.overlay-image-content-right .content p {
  color: var(--white);
  line-height: 1.8;
}

@media (max-width: 1400px) {
  .wd-block.overlay-image-content-right .content {
    padding: 6rem 6rem 2rem 0;
  }
}

@media (max-width: 1152px) {
  .wd-block.overlay-image-content-right .block-content {
    gap: 3rem;
  }

  .wd-block.overlay-image-content-right .images {
    width: calc(50% - 1.5rem);
  }

  .wd-block.overlay-image-content-right .content {
    width: calc(50% - 1.5rem);
    padding: 6rem 3rem 2rem 0;
  }
}

@media (max-width: 1023px) {
  .wd-block.overlay-image-content-right .block-content {
    flex-direction: column;
  }

  .wd-block.overlay-image-content-right .images {
    width: 100%;
    padding-top: 0;
  }

  .wd-block.overlay-image-content-right .content {
    width: 100%;
    padding: 4rem 0 3rem 0;
  }
}

@media (max-width: 767px) {
  .wd-block.overlay-image-content-right .images .first-image {
    width: 50%;
  }

  .wd-block.overlay-image-content-right .images .second-image {
    width: 70%;
  }
}

.wd-block.image-links {
  position: relative;
  padding: 6rem 0 20rem 0;
}

.wd-block.image-links .first-background-image {
  position: absolute;
  top: 0;
  left: 0;
}

.wd-block.image-links .second-background-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

.wd-block.image-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.wd-block.image-links .links .image-link:nth-child(3n + 1) {
  margin-top: 3rem;
}

.wd-block.image-links .links .image-link:nth-child(3n + 2) {
  margin-top: 6rem;
}

.wd-block.image-links .links .image-link {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: calc((100% / 3) - 1.334rem);
  height: 38rem;
  padding: 3.5rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
  transition: all ease 0.4s;
}

.wd-block.image-links .links .image-link:hover {
  transform: translateY(-0.5rem);
}

.wd-block.image-links .links .image-link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.4s;
}

.wd-block.image-links .links .image-link:hover img {
  filter: brightness(0.6);
}

.wd-block.image-links .links .image-link .content {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.wd-block.image-links .links .image-link .content .text {
  display: flex;
  flex-direction: column;
}

.wd-block.image-links .links .image-link .content .text .first-text {
  font-family: "Sora", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: normal;
}

.wd-block.image-links .links .image-link .content .text .second-text {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: normal;
}

.wd-block.image-links .links .image-link .content .arrow-simple-icon {
  display: flex;
  align-items: flex-end;
  width: 2rem;
  margin-bottom: 0.5rem;
  fill: var(--white);
}

.wd-block.image-links .links .image-link .content .arrow-simple-icon svg {
  transition:
    transform ease 0.4s,
    fill ease 0.2s;
}

.wd-block.image-links .links .image-link:hover .content .arrow-simple-icon {
  fill: var(--primary-color);
}

.wd-block.image-links .links .image-link:hover .content .arrow-simple-icon svg {
  transform: rotate(45deg);
}

@media (max-width: 1279px) {
  .wd-block.image-links .links {
    gap: 1.5rem;
  }

  .wd-block.image-links .links .image-link {
    padding: 3.5rem 2.5rem;
  }
}

@media (max-width: 1023px) {
  .wd-block.image-links .links .image-link {
    height: 18rem;
    width: calc(50% - 0.75rem);
    padding: 3.5rem 2rem;
  }

  .wd-block.image-links .links .image-link:nth-child(3n + 1),
  .wd-block.image-links .links .image-link:nth-child(3n + 2) {
    margin-top: 0;
  }

  .wd-block.image-links .links .image-link:nth-child(even) {
    transform: translateY(5rem);
  }
}

@media (max-width: 620px) {
  .wd-block.image-links {
    padding-top: 2rem;
  }

  .wd-block.image-links .links .image-link {
    height: 18rem;
    width: 100%;
  }

  .wd-block.image-links .links .image-link:nth-child(even) {
    transform: none;
  }
}

.wd-block.image-left-content-image-right {
  display: flex;
}

.wd-block.image-left-content-image-right .main-image-container {
  width: 50%;
}

.wd-block.image-left-content-image-right .main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-block.image-left-content-image-right .content-container {
  width: 50%;
  background-color: var(--primary-color);
  padding: 6rem;
}

.wd-block.image-left-content-image-right .content-container h2 {
  margin-bottom: 2rem;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--white);
}

.wd-block.image-left-content-image-right .content-container .content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  color: var(--white);
}

.wd-block.image-left-content-image-right .content-container .content p {
  color: var(--white);
  line-height: 1.8;
}

@media (max-width: 1400px) {
  .wd-block.image-left-content-image-right .content-container {
    padding: 3rem;
  }

  .wd-block.image-left-content-image-right
    .content-container
    .content
    .optional-image {
    width: 40%;
  }
}

@media (max-width: 1200px) {
  .wd-block.image-left-content-image-right
    .content-container
    .content
    .optional-image {
    width: 40%;
  }
}

@media (max-width: 991px) {
  .wd-block.image-left-content-image-right {
    flex-direction: column;
  }

  .wd-block.image-left-content-image-right .main-image-container {
    width: 100%;
  }

  .wd-block.image-left-content-image-right .main-image-container img {
    aspect-ratio: 9/5;
  }

  .wd-block.image-left-content-image-right .content-container {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .wd-block.image-left-content-image-right .content-container {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }

  .wd-block.image-left-content-image-right .main-image-container img {
    aspect-ratio: 9/6;
  }

  .wd-block.image-left-content-image-right .content-container .content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .wd-block.image-left-content-image-right .content-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .wd-block.image-left-content-image-right
    .content-container
    .content
    .optional-image {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .wd-block.image-left-content-image-right
    .content-container
    .content
    p:has(.btn) {
    text-align: center;
  }
}

.wd-block.introduction-section {
  position: relative;
}

.wd-block.introduction-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wd-block.introduction-section .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  min-height: 14rem;
  padding: 4rem 0;
}

.wd-block.introduction-section.two-columns .content-container {
  align-items: flex-start;
}

.wd-block.introduction-section .content-container .title {
  position: relative;
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--ternary-alt-color);
  text-align: center;
}

.wd-block.introduction-section.two-columns .content-container .title {
  text-align: left;
}

.wd-block.introduction-section .content-container .content {
  position: relative;
  color: var(--white);
  line-height: 1.7;
}

.wd-block.introduction-section.two-columns .content-container .title,
.wd-block.introduction-section.two-columns .content-container .content {
  width: calc(50% - 4rem);
}

@media (max-width: 1279px) {
  .wd-block.introduction-section .content-container {
    gap: 4rem;
  }

  .wd-block.introduction-section.two-columns .content-container .title,
  .wd-block.introduction-section.two-columns .content-container .content {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 1023px) {
  .wd-block.introduction-section .content-container {
    gap: 2rem;
  }

  .wd-block.introduction-section.two-columns .content-container .title,
  .wd-block.introduction-section.two-columns .content-container .content {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .wd-block.introduction-section .content-container {
    flex-direction: column;
    gap: 1rem;
  }

  .wd-block.introduction-section.two-columns .content-container .title,
  .wd-block.introduction-section.two-columns .content-container .content {
    width: 100%;
  }
}

.wd-block.quote-section {
  background-color: var(--ternary-color);
}

.wd-block.quote-section .content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.wd-block.quote-section .content-container .quote {
  position: relative;
  margin-bottom: 0;
  padding: 1.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--black);
  text-align: center;
  line-height: normal;
}

.wd-block.quote-section .content-container .quote .quote-icon {
  position: absolute;
  display: block;
  width: 1.6rem;
  fill: var(--primary-alt-color);
}

.wd-block.quote-section .content-container .quote .quote-icon.start {
  top: 0;
  left: 0;
}

.wd-block.quote-section .content-container .quote .quote-icon.end {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.wd-block.image-right-content-left {
  position: relative;
  padding: 4rem 0;
}

.wd-block.image-right-content-left.content-background {
  position: relative;
  overflow: hidden;
}

.wd-block.image-right-content-left.content-background::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 10rem);
  height: 100%;
}

.wd-block.image-right-content-left.content-background.background-beige::before {
  background-color: var(--ternary-color);
}

.wd-block.image-right-content-left.content-background.background-light-brown::before {
  background-color: var(--primary-color);
}

.wd-block.image-right-content-left .decoration-image {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-25%);
}

.wd-block.image-right-content-left .content-container {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.wd-block.image-right-content-left .content-container .the-content,
.wd-block.image-right-content-left .content-container .image-container {
  width: calc(50% - 2rem);
}

.wd-block.image-right-content-left .content-container .image-container img {
  max-width: 100%;
}

@media (max-width: 1023px) {
  .wd-block.image-right-content-left.content-background::before {
    content: none;
  }

  .wd-block.image-right-content-left .content-container {
    flex-direction: column;
  }

  .wd-block.image-right-content-left.content-background
    .content-container
    .the-content {
    z-index: 10;
    position: relative;
  }

  .wd-block.image-right-content-left.content-background
    .content-container
    .the-content::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200vw;
    height: calc(100% + 6rem);
    background-color: var(--ternary-color);
    transform: translate(-50%, -4rem);
  }

  .wd-block.image-right-content-left .content-container .the-content,
  .wd-block.image-right-content-left .content-container .image-container {
    width: 100%;
  }
}

.wd-block.image-left-content-right {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.wd-block.image-left-content-right.content-background {
  position: relative;
}

.wd-block.image-left-content-right.content-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 10rem);
  height: 100%;
  background-color: var(--ternary-color);
}

.wd-block.image-left-content-right .content-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.wd-block.image-left-content-right .content-container .the-content,
.wd-block.image-left-content-right .content-container .image-container {
  width: calc(50% - 2rem);
}

.wd-block.image-left-content-right .content-container .image-container img {
  max-width: 100%;
}

@media (max-width: 1023px) {
  .wd-block.image-left-content-right .content-container {
    flex-direction: column;
  }

  .wd-block.image-left-content-right .content-container .the-content,
  .wd-block.image-left-content-right .content-container .image-container {
    width: 100%;
  }
}

.wd-block.four-columns-blocks-image-text-section {
  position: relative;
  padding: 4rem 0;
}

.wd-block.four-columns-blocks-image-text-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-block.four-columns-blocks-image-text-section .decoration-image {
  position: absolute;
  bottom: 0;
  left: 0;
}

.wd-block.four-columns-blocks-image-text-section .content-container {
  position: relative;
}

.wd-block.four-columns-blocks-image-text-section .content-container h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  color: var(--primary-alt-color);
  text-align: center;
}

.wd-block.four-columns-blocks-image-text-section
  .content-container
  h2
  .decoration {
  width: 8rem;
}

.wd-block.four-columns-blocks-image-text-section
  .content-container
  .introduction {
  color: var(--white);
  text-align: center;
  font-weight: 500;
}

.wd-block.four-columns-blocks-image-text-section .content-container .blocks {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.wd-block.four-columns-blocks-image-text-section
  .content-container
  .blocks
  .block {
  width: calc((100% / 4) - 2rem + (2rem / 4));
}

.wd-block.four-columns-blocks-image-text-section
  .content-container
  .blocks
  .block
  img {
  max-width: 100%;
  border-radius: var(--border-radius);
}

.wd-block.four-columns-blocks-image-text-section
  .content-container
  .blocks
  .block
  .the-content {
  padding: 1rem;
}

.wd-block.four-columns-blocks-image-text-section
  .content-container
  .blocks
  .block
  .the-content
  p {
  color: var(--white);
}

@media (max-width: 1023px) {
  .wd-block.four-columns-blocks-image-text-section .content-container .blocks {
    flex-wrap: wrap;
  }

  .wd-block.four-columns-blocks-image-text-section
    .content-container
    .blocks
    .block {
    width: calc((100% / 2) - 2rem + (2rem / 2));
  }
}

@media (max-width: 575px) {
  .wd-block.four-columns-blocks-image-text-section
    .content-container
    .blocks
    .block {
    width: 100%;
  }
}

.wd-block.two-texts-two-images-section {
  overflow: hidden;
}

.wd-block.two-texts-two-images-section .columns {
  display: flex;
  gap: 4rem;
}

.wd-block.two-texts-two-images-section .columns .column {
  width: calc((100% / 2) - 2rem + (2rem / 2));
}

.wd-block.two-texts-two-images-section .columns .column .text {
  line-height: 1.6;
}

.wd-block.two-texts-two-images-section .columns .column img {
  max-width: 100%;
}

.wd-block.two-texts-two-images-section .columns .first-column .text {
  position: relative;
  padding: 4rem 4rem 2rem 0;
  background-color: var(--ternary-color);
}

.wd-block.two-texts-two-images-section .columns .first-column .text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ternary-color);
  transform: translateX(-100%);
}

.wd-block.two-texts-two-images-section .columns .first-column .text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 100%;
  background-color: var(--ternary-color);
  transform: translateX(100%);
}

.wd-block.two-texts-two-images-section .columns .first-column .image {
  position: relative;
}

.wd-block.two-texts-two-images-section .columns .first-column .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--ternary-color);
  transform: translateX(-100%);
}

.wd-block.two-texts-two-images-section .columns .first-column .image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 50%;
  background-color: var(--ternary-color);
  transform: translateX(100%);
}

.wd-block.two-texts-two-images-section .columns .second-column {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
}

.wd-block.two-texts-two-images-section .columns .second-column .text {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 2rem 0 2rem 2rem;
}

.wd-block.two-texts-two-images-section
  .columns
  .second-column
  .text
  p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1400px) {
  .wd-block.two-texts-two-images-section .columns {
    gap: 2rem;
  }
}

@media (max-width: 1152px) {
  .wd-block.two-texts-two-images-section .columns {
    gap: 1rem;
  }
}

@media (max-width: 1023px) {
  .wd-block.two-texts-two-images-section .columns .first-column .text {
    padding-right: 2rem;
  }
}

@media (max-width: 767px) {
  .wd-block.two-texts-two-images-section .columns {
    flex-wrap: wrap;
  }

  .wd-block.two-texts-two-images-section .columns .column {
    width: 100%;
  }

  .wd-block.two-texts-two-images-section .columns .first-column .text {
    padding-right: 0;
  }

  .wd-block.two-texts-two-images-section .columns .second-column .text {
    padding-left: 0;
  }

  .wd-block.two-texts-two-images-section .columns .second-column {
    padding-top: 0;
  }
}

.wd-block.quote-three-images-section {
  overflow: hidden;
  padding-bottom: 4rem;
}

.wd-block.quote-three-images-section.no-quote {
  padding-top: 4rem;
}

.wd-block.quote-three-images-section .content-container {
  display: flex;
  justify-content: flex-end;
}

.wd-block.quote-three-images-section .content-container .quote-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 4rem);
  padding: 3rem 1.5rem;
  background-color: var(--ternary-color);
}

.wd-block.quote-three-images-section
  .content-container
  .quote-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ternary-color);
  transform: translateX(100%);
}

.wd-block.quote-three-images-section
  .content-container
  .quote-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--ternary-color);
  transform: translateY(100%);
}

.wd-block.quote-three-images-section .content-container .quote {
  position: relative;
  margin-bottom: 0;
  padding: 1.6rem;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--black);
  text-align: center;
  line-height: normal;
}

.wd-block.quote-three-images-section .content-container .quote .quote-icon {
  position: absolute;
  display: block;
  width: 1.6rem;
  fill: var(--primary-alt-color);
}

.wd-block.quote-three-images-section
  .content-container
  .quote
  .quote-icon.start {
  top: 0;
  left: 0;
}

.wd-block.quote-three-images-section .content-container .quote .quote-icon.end {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.wd-block.quote-three-images-section .images {
  position: relative;
  display: flex;
  gap: 2rem;
}

.wd-block.quote-three-images-section .images img {
  max-width: 100%;
  width: calc((100% / 3) - 2rem + (2rem / 3));
}

@media (max-width: 1400px) {
  .wd-block.quote-three-images-section .content-container .quote-container {
    width: calc(50% - 3rem);
  }
}

@media (max-width: 1152px) {
  .wd-block.quote-three-images-section .content-container .quote-container {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 1023px) {
  .wd-block.quote-three-images-section .images {
    gap: 1rem;
  }

  .wd-block.quote-three-images-section .images img {
    width: calc((100% / 3) - 1rem + (1rem / 3));
  }
}

@media (max-width: 767px) {
  .wd-block.quote-three-images-section .content-container .quote-container {
    width: 100%;
  }

  .wd-block.quote-three-images-section
    .content-container
    .quote-container::before {
    width: 50%;
    left: 0;
    right: unset;
    transform: translateX(-100%);
  }

  .wd-block.quote-three-images-section
    .content-container
    .quote-container::after {
    width: 50%;
    left: unset;
    right: 0;
    transform: translateX(100%);
  }

  .wd-block.quote-three-images-section .images {
    flex-direction: column;
  }

  .wd-block.quote-three-images-section.no-quote .images::before,
  .wd-block.quote-three-images-section.no-quote .images::after {
    content: none;
  }

  .wd-block.quote-three-images-section .images::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-color: var(--ternary-color);
    transform: translateX(-50%);
  }

  .wd-block.quote-three-images-section .images::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--ternary-color);
    transform: translateX(50%);
  }

  .wd-block.quote-three-images-section .images img {
    position: relative;
    z-index: 1;
    width: 100%;
  }
}

.wd-block.anchor-links-section.spacing-top-bottom {
  padding: 4rem 0;
}

.wd-block.anchor-links-section.spacing-top {
  padding: 4rem 0 0 0;
}

.wd-block.anchor-links-section.spacing-bottom {
  padding: 0 0 4rem 0;
}

.wd-block.anchor-links-section .links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 0.5rem;
}

.wd-block.anchor-links-section .anchor-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  min-width: 18rem;
  padding: 1rem 2rem;
  color: var(--white);
  font-size: 1.4rem;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  transition: all ease 0.3s;
}

.wd-block.anchor-links-section .anchor-link:hover {
  background-color: var(--black);
}

@media (max-width: 575px) {
  .wd-block.anchor-links-section .anchor-link {
    min-width: none;
  }
}

.wd-block.simple-text-section {
  padding: 4rem 0;
}

.wd-block.two-columns-text-section {
  padding: 2rem 0;
}

.wd-block.two-columns-text-section .text-columns {
  display: flex;
  gap: 2rem;
}

.wd-block.two-columns-text-section .text-columns .text-column {
  width: calc((100% / 2) - 2rem + (2rem / 2));
}

@media (max-width: 767px) {
  .wd-block.two-columns-text-section .text-columns {
    flex-direction: column;
    gap: 0;
  }

  .wd-block.two-columns-text-section .text-columns .text-column {
    width: 100%;
  }
}

.wd-block.image-full-width-section img {
  padding: 2rem 0;
}

.wd-block.image-full-width-section img {
  max-width: 100%;
}

.wd-block.map-section #block-map {
  margin-top: 2rem;
  height: 700px;
}

.wd-block.outlets-map-section #outlets-map {
  height: 700px;
}
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #29110c;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  line-height: 1;
  margin-left: 5px;
}
.pro-badge .pro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366; /* vert lisible */
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: proPulse 1.5s infinite ease-out;
}
@keyframes proPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
    opacity: 0.85;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    opacity: 1;
  }
}

.part-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #29110d;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  line-height: 1;
  margin-left: 5px;
}

.part-badge .part-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffee66;
  box-shadow: 0 0 0 0 rgba(77, 171, 247, 0.6);
  animation: partPulse 1.5s infinite ease-out;
}

@keyframes partPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 238, 102, 0.55);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 238, 102, 0);
    opacity: 0.85;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 238, 102, 0);
    opacity: 1;
  }
}

.pro-label {
  font-weight: 700;
  border: 2px solid #fff;
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 10px;
  background: rgba(29, 8, 9, 0.4);
}
.context-link {
  color: #a5712c;
  font-weight: 500;
}
.atc-list-btn {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
/* ===========================
   Switch Pro / Particulier
   =========================== */

/* Conteneur */
#content .account-switch {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  background: #fff3d8;
  padding: 0.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* “Boutons” (liens ou span) */
#content .account-switch .switch-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  min-height: 72px;

  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid #e8e1d5;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  color: #3a2a18;
  text-decoration: none;

  transition:
    transform 0.08s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

/* Titres / sous-titres */
#content .account-switch .switch-title {
  font-weight: 600;
  line-height: 1.2;
  color: #3a2a18;
}
#content .account-switch .switch-sub {
  font-size: 0.84rem;
  color: #7b6a57;
}

/* Ordre visuel : Particulier à gauche, Pro à droite */
#content .account-switch .switch-consumer {
  order: 1;
}
#content .account-switch .switch-pro {
  order: 2;
}

/* État ACTIF (onglet sélectionné) */
#content .account-switch .switch-btn.is-active {
  background: #fff;
  border-color: #7a552a;
  box-shadow:
    0 0 0 2px #7a552a inset,
    0 1px 0 rgba(0, 0, 0, 0.02);
  color: #3a2a18;
}
#content .account-switch .switch-btn.is-active .switch-title {
  color: #3a2a18;
}
#content .account-switch .switch-btn.is-active .switch-sub {
  color: #7b6a57;
}

/* État INACTIF (grisé / atténué) */
#content .account-switch .switch-btn:not(.is-active) {
  background: #fbf8f3;
  border-color: #e6dfd2;
  color: #6b5b49;
  opacity: 0.9;
}
#content .account-switch .switch-btn:not(.is-active) .switch-title {
  color: #6b5b49;
}
#content .account-switch .switch-btn:not(.is-active) .switch-sub {
  color: #9a8e7e;
}

/* Hover / Focus sur l'inactif : remonter le contraste pour l'action */
#content .account-switch .switch-btn:not(.is-active):hover,
#content .account-switch .switch-btn:not(.is-active):focus-visible {
  opacity: 1;
  border-color: #c7b79f;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* Accessibilité clavier */
#content .account-switch .switch-btn:focus-visible {
  outline: 2px solid #7a552a;
  outline-offset: 2px;
}

/* Curseur neutre sur l'onglet actif (span non cliquable) */
#content .account-switch span.switch-btn.is-active {
  cursor: default;
}

/* Petites largeurs : plus compact */
@media (max-width: 480px) {
  #content .account-switch .switch-sub {
    display: none;
  }
  #content .account-switch .switch-btn {
    min-height: auto;
    padding: 0.8rem 0.9rem;
  }
}
.product-price-and-shipping {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Met le groupe "Entreprise non soumise à la TVA" en ligne et inverse l'ordre */
.pro-fieldset .form-group:has(#pro_vat_exempt) {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* espace entre switch et texte */
}

/* Le libellé texte passe après le switch */
.pro-fieldset .form-group:has(#pro_vat_exempt) > label.form-control-label {
  order: 2;
  margin: 0;
  cursor: pointer; /* clic sur le texte => coche */
}

/* Le conteneur du switch passe avant */
.pro-fieldset .form-group:has(#pro_vat_exempt) > div {
  order: 1;
}

/* Optionnel : s'assurer que le switch est bien centré verticalement */
.switch {
  display: inline-flex;
  align-items: center;
}
a {
  color: #bf873c;
}
#header .top-menu a[data-depth="0"]:hover,
a:hover,
.product-miniature .highlighted-informations .quick-view:hover {
  color: #29110c;
}
/* 1) Quand on a un SVG inline, on coupe l’icône injectée par le thème */
#header .header-nav .block-social .social-link::before,
.youtube {
  background: none !important;
}
.form-control:focus {
  outline: 0.1875rem solid #bf873c;
}
