body,
html {
  padding: 0;
  margin: 0;
  clear: both;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 350;
}

.svg-color {
  color: #e9a383;
}

.color-red {
  color: #D98873;
}

.swiper-pagination-bullet-active {
  background: #e9a383 !important;
}

.background-red {
  background-color: #D98873;
}

.background-turquoise {
  background-color: #40e0d0;
}

.color-turquoise {
  color: #40e0d0;
}

.color-or {
  color: #eaa182;
}

.background-or {
  background-color: #eaa182;
}


h1,
h2,
h3,
h4,
h5 {
  font-family: "Bodoni Moda";
}

header {
  padding: 20px 0;
}

.btn-orange {
  background-color: #D98873;
  padding: 12px 18px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
}

.btn-border-orange {
  color: #D98873;
  border: 1px solid #D98873;
  background-color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
}



/****** MODAL *****/
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #FAF7F2;
  margin: 10% auto;
  padding: 25px;
  border: 1px solid #888;
  width: 80%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 0;
  transform: translate(0, -50px);
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  background-color: white;
}

.modal-content h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.modal.open .modal-content {
  opacity: 1;
  transform: translate(0, 0);
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.radio-group {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}

.radio-group>div {
  display: flex;
  gap: 12px;
}

.radio-group label {
  font-weight: normal;
  display: inline;
}

#locationFields {
  display: flex;
}

header nav ul li {
  font-size: 18px;
}

header nav ul:not(.submenu) {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*
header .menu>div {
    width: 20%;
}

header nav {
    width: 60%;
}*/

/* État de base du menu (Masqué en haut) */
.mobile-nav-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  /* gray-100 */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 40;

  /* Animation */
  transition: all 0.5s ease-in-out;
  transform: translateY(-100%);
  /* -translate-y-full */
  opacity: 0;
  pointer-events: none;
  /* Empêche de cliquer quand il est masqué */
}

/* État quand le menu est ouvert */
.mobile-nav-canvas.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Style rapide pour la liste si tu n'as plus Tailwind */
.mobile-nav-canvas ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  list-style: none;
  gap: 1.5rem;
}

.menu-icon a {
  margin: 0 8px;
  display: flex;
  align-items: center;
  position: relative;
}

.main-title h1 {
  font-size: 45px;
  font-weight: 500;
  line-height: 58px;
}

.flags-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.flags-list li {
  margin: 50px 20px;
  width: calc(100% / 5 - 40px);
}

/* === HEADER BASE === */
header {
  position: relative;
  width: 100%;
  transition: all 0.5s ease;
  z-index: 50;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: fadeInDown 0.5s ease;
  padding-block: 0.6rem !important;
}

.logo-site {
  width: 150px;
}

ul.main-nav {
  gap: 1.25rem;
}

@keyframes fadeInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation luxe */
@keyframes luxeFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.97);
    filter: drop-shadow(0 0 0px rgba(255, 200, 150, 0));
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(255, 200, 150, 0.3));
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 200, 150, 0.2));
  }
}

.lux-anim {
  opacity: 0;
  transform: scale(0.97);
  animation: luxeFadeIn 1s forwards ease-out;
  animation-delay: 0.3s;
  /* optionnel : retarder légèrement l’animation */
}

/* === MENU MOBILE (slide latéral + fondu luxe) === */
#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateX(-100%);
  visibility: hidden;
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
    visibility 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

/* === Sous-menu Ressources === */
header nav ul li.group:hover ul,
header nav ul li.group ul:hover {
  display: block !important;
}

.my-account-nav {
  display: none;
}

.has-children {
  text-align: center;
}

.has-children>a {
  display: none;
}

strong {
  font-weight: 500 !important;
}

/***************** HOME *****************/

.hero-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.slogan {
  line-height: 44px;
  font-weight: 300;
  font-size: 1.875rem;
  max-width: 550px;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.hero-left .main-title {
  padding-right: 4rem;
}

.hero-right,
.hero-left {
  width: 50%;
}

.hero-right {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-left {
  padding-right: 4rem;
}

.hero-img-left {
  display: grid;
  gap: 1rem;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hero-img-right img {
  width: 400px;
  height: 500px;
}

.hero-cta {
  gap: 16px;
  margin-top: 3rem;
}

.hero-cta a:nth-child(2) {
  min-width: 215px;
}

.for-who-responsive {
  display: none;
}

.cta-section a br {
  display: none;
}

/***************** MINI CART *****************/

.side-panel {
  position: fixed;
  top: 0;
  height: 100%;
  background-color: #fcfcfc;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  right: -100%;
  width: 100%;
}

.close-panel {
  position: absolute;
  right: 20px;
  top: 17px;
}

#close-side-panel {
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .side-panel {
    right: -65%;
    width: 65%;
  }
}

@media (min-width: 1000px) {
  .side-panel {
    right: -50%;
    width: 50%;
  }
}

@media (min-width: 1400px) {
  .side-panel {
    right: -38%;
    width: 38%;
  }
}

@media (min-width: 1700px) {
  .side-panel {
    right: -30%;
    width: 30%;
  }
}

@media (min-width: 1970px) {
  .side-panel {
    right: -25%;
    width: 25%;
  }
}

.side-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.side-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.side-panel.active {
  right: 0;
}

.side-panel .bloc-side-panel h3 {
  background: linear-gradient(to right, #18181b, #0E0E0E);
  color: white;
  padding: 15px 25px;
  font-size: 20px;
}

.cart-side-content {
  padding: 30px;
}

.cart-panel-buttons {
  margin-top: 35px;
}

/***************** WOOCOMMERCE CHECKOUT *****************/

.woocommerce table.shop_table th {
  font-weight: 400;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 500;
}

.wcpay-express-checkout-wrapper {
  margin-bottom: 10px;
}

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

.page-order-received p.woocommerce-thankyou-order-received {
  font-size: 50px;
  color: #d88169;
  margin-bottom: 35px;
  font-family: "Bodoni Moda";
}

.page-order-received .woocommerce-table__product-name img {
  border-radius: 4px;
}

.page-order-received .woocommerce-table__product-name {
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-order-received .download-remaining,
.page-order-received .download-expires {
  display: none;
}

.page-order-received h2 {
  margin-bottom: 20px;
}

.page-order-received .woocommerce-order td a {
  color: black;
}

.page-order-received .woocommerce-order {
  background-color: white;
  border-radius: 20px;
  padding: 50px;
}

.page-commander .lost_password a {
  color: black;
}

.page-commander .woocommerce form.login>p:nth-child(1) {
  display: none;
}

.page-commander .woocommerce form.login {
  padding: 20px 40px 40px 40px;
}

.custom-checkout-layout {
  position: relative;
}

.showlogin {
  color: #ff6b35;
}

#contact-fields {
  margin-bottom: 40px;
}

.checkout-title {
  margin-bottom: 20px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: white;
  border-radius: 0 0 20px 20px;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49%;
}

.woocommerce form .coords-container .form-row {
  margin-top: 15px;
  margin-bottom: 5px;
}

#shipping_phone_field .optional,
#create_account_popsico_field .optional,
#contact_phone_field .optional {
  display: none;
}

#create_account_popsico_field {
  margin-top: 0;
  padding-top: 0;
}

.billing-coords-container {
  flex-direction: row-reverse;
  margin-top: 15px;
}

.woocommerce-terms-and-conditions-text a {
  color: black;
  font-weight: 500;
}

.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 25px;
  font-size: 15px;
}

.woocommerce form .form-row#billing_postcode_field,
.woocommerce form .form-row#billing_city_field,
.woocommerce form .form-row#billing_phone_field,
.woocommerce form .form-row#billing_email_field {
  margin: 0;
}

.woocommerce form .form-row .woocommerce-terms-and-conditions-wrapper label {
  line-height: 25px;
}

.page-commander .optional {
  display: none;
}

.billing-coords-container,
.postcode-city-container {
  display: flex;
  gap: 1em;
}

.billing-coords-container .form-row,
.postcode-city-container .form-row {
  flex: 1;
}

.coords-container {
  display: flex;
  gap: 1em;
}

.coords-container .form-row {
  flex: 1;
}

.shipping-fields {
  margin: 10px 0;
}

.payment-bloc {
  margin: 40px 0 0;
}

.woocommerce form .form-row.place-order {
  margin: 0;
}

.woocommerce form .form-row#shipping_address_1_field,
.woocommerce form .form-row#shipping_address_2_field {
  margin-bottom: 0;
}

.woocommerce form .woocommerce-terms-and-conditions-wrapper .form-row {
  margin-top: 0;
  padding-top: 0;
}

#billing_address_2_field,
#shipping_address_2_field {
  display: none;
}

#show-billing-address-2,
#show-address-2 {
  background: transparent;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #d88771;
}

.page-commander #order_comments_field label {
  display: none;
}

.page-commander .woocommerce form .form-row textarea.input-text#order_comments {
  height: 100px;
  padding: 20px;
}

.checkout-title h2 {
  margin-bottom: 8px;
}

.checkout-title p {
  color: grey;
}

#billing-fields {
  padding: 35px 0 10px 0;
}

#ship-to-different-address {
  display: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 8px 0 0;
}

.woocommerce-checkout-review-order-table .product-total {
  padding-top: 20px;
}

.woocommerce-checkout-review-order-table .product-name {
  padding: 20px 20px 0 20px;
  font-size: 15px;
  width: 60%;
}

.woocommerce-checkout-review-order-table .order-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 20px;
}


.woocommerce-checkout-review-order-table .cart-fee {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.woocommerce-checkout-review-order-table .applied-coupon {
  margin-top: 15px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
}

.woocommerce-checkout-review-order-table .cart-subtotal {
  display: flex;
  justify-content: space-between;
}

.woocommerce-checkout-review-order-table .cart_item {
  display: flex;
  margin-bottom: 15px;
}

.woocommerce-checkout-review-order-table .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce-checkout-review-order-table .cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce-mini-cart-item .wrap_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce-mini-cart-item .wrap_img {
  width: 130px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
}

.cart-side-content .cart-items {
  max-height: 69vh;
  overflow-y: scroll;
}

.cart-side-content .cart-items::-webkit-scrollbar {
  display: none;
}

.cart-side-content .cart-items {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cart-side-content .cart-totals {
  margin-top: 30px;
}

.cart-side-content .cart-totals>p {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  border-bottom: 1px solid #ebedef;
  padding-bottom: 15px;
}

.cart-side-content .cart-totals>p strong {
  font-weight: normal;
}

.cart-side-content .cart-totals>p:last-child strong {
  font-weight: bold;
}

.cart-side-content .cart-totals>p:last-child {
  font-size: 20px;
  font-weight: bold;
}

.cart-side-content .cart-items li {
  list-style-type: none;
  margin-bottom: 20px;
}

.mini-cart-items .product-total {
  width: 20%;
  padding: 25px 0;
  font-weight: 600;
  text-align: right;
}

.mini-cart-items .product-name .product-price {
  color: grey;
  margin-top: 10px;
}

.mini-cart-items .product-name .quantity-product-price {
  color: grey;
  margin-top: 10px;
}

.mini-cart-items .product-name {
  width: calc(85% - 130px);
  padding: 25px;
  position: relative;
}

.mini-cart-items .product-name .remove-item-mini-cart a {
  font-size: 15px;
  color: #d88774;
}

.mini-cart-items .product-name .remove-item-mini-cart {
  position: absolute;
  bottom: 0;
}

.mini-cart-items {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ebedef;
  padding-bottom: 20px;
}

.continue-shopping {
  border: none;
  background: no-repeat;
  font-size: 16px;
  margin-left: 20px;
  cursor: pointer;
  color: #d88774;
}

.blockUI.blockOverlay {
  background-color: rgb(255, 255, 255) !important;
}

.woocommerce #payment #place_order {
  float: none;
}

.woocommerce-checkout #payment {
  margin-top: 25px;
}

.page-commander .title {
  visibility: hidden;
  height: 0;
  margin: 0;
}

.page-commander {
  background-color: #f4fbfd;
}

.custom-checkout-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.checkout-main {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
}

.sidebar-inner {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.page-commander #checkout-summary h3 {
  margin-bottom: 20px;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: transparent;
  padding: 0;
}

/*
.wc_payment_methods.payment_methods.methods {
  background-color: #f6f6f6;
  padding: 20px;
  border-radius: 20px;
}*/

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding: 1em 0;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
}

.payment_box.payment_method_woocommerce_payments fieldset {
  padding: 0 !important;
  border: none;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.page-commander h2,
.page-commander h3 {
  font-size: 22px;
}

/***************** WOOCOMMERCE CART *****************/


.page-panier .title {
  visibility: hidden;
  height: 0;
  margin: 0;
}

.page-panier .cart-container {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

.page-panier .woocommerce-notices-wrapper {
  width: 100%;
}

.page-panier .cart-summary .cart-item {
  display: flex;
  border-bottom: 1px solid #ebedef;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-panier .cart-summary .cart-item:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

.page-panier .cart-summary .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-panier .cart-summary .h3 {
  margin-bottom: 10px;
}

.page-panier .cart-summary .product-price {
  font-size: 18px;
  color: grey;
  margin-top: 10px;
}

.page-panier .cart-summary .cart-item-image {
  width: 20%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
}

.page-panier .cart-summary .product-quantity {
  width: 20%;
  padding: 20px 0;
}

.page-panier .cart-summary .product-subtotal {
  width: 15%;
  padding: 30px 0;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
}

.page-panier .cart-header {
  display: flex;
  border-bottom: 1px solid #ebedef;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-panier .cart_totals h2 {
  display: none;
}

.page-panier .cart-header .cart-header-image {
  width: 65%;
}

.page-panier .cart-header .cart-header-quantity {
  width: 20%;
}

.page-panier .cart-header .cart-header-subtotal {
  width: 15%;
  text-align: center;
}

.page-panier .cart-summary .cart-item-details h3 a {
  color: black;
  text-decoration: none;
  font-size: 22px;
}

.page-panier .cart-summary .cart-item-details {
  width: 45%;
  padding: 30px 25px;
  position: relative;
}

.page-panier .cart-summary .remove-item {
  position: absolute;
  bottom: 10px;
}

.woocommerce-message,
body:not(.page-commander) .woocommerce-info {
  display: none !important;
}

.page-panier .cart-summary .cart-item-details .remove-item a {
  font-size: 15px;
  color: #d97a5d;
}

.page-panier .cart-summary {
  width: 70%;
  background-color: white;
  border-radius: 20px;
  padding: 30px 40px;
}

.page-panier .cart-totals {
  width: calc(30% - 20px);
  background-color: white;
  border-radius: 20px;
  margin-left: 20px;
  padding: 30px 40px;
}

.page-panier a.checkout-button {
  width: 100%;
  text-align: center;
  background-color: #ff6b35;
}

.page-panier a.checkout-button.disabled {
  background-color: #ebedf3 !important;
  color: #8b8c8f !important;
  padding: 15px 25px !important;
}

.page-panier .cart_totals td {
  text-align: right;
}

.coupon-chevron {
  display: inline-block;
  transform: rotate(0deg);
}

.coupon-chevron.open {
  transform: rotate(180deg);
}

.page-panier .woocommerce-shipping-destination,
.page-panier .woocommerce-shipping-calculator {
  display: none;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  left: 6px;
}

/***************** WOOCOMMERCE *****************/

.page-commander,
.page-panier,
.page-mon-compte {
  background-color: #FAF7F2;
}

/* my account */

.myaccount-logged>div {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 15px 0;
  border-bottom: 1px solid #d9856e;
  padding-bottom: 15px;
}

.woocommerce-MyAccount-navigation {
  width: 20%;
}

.woocommerce-MyAccount-content {
  width: calc(80% - 40px);
  margin-left: 40px;
  background-color: white;
  border-radius: 20px;
  padding: 40px 50px;
}

/* RESET PWD */
.lost_reset_password {
  margin-top: 40px;
}

.woocommerce form.lost_reset_password .form-row-first {
  width: 100%;
  margin: 20px 0;

}

.woocommerce form.lost_reset_password .form-row {
  width: 100%;
}

.woocommerce a.wc-forward,
.woocommerce button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  /* py-3 px-5 */
  width: auto;
  background-image: linear-gradient(to right, #D98873, #D97A5C);
  color: #ffffff;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease-in-out;
}

.woocommerce a.wc-forward {
  margin-top: 0;
}

.woocommerce-info::before {
  display: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1em 2em 1em 2em;
  border-top: 3px solid #d97a5d;
  background-color: #fbf7f3;
}

.woocommerce-MyAccount-content address {
  font-size: 15px;
}

.woocommerce-Address-title.title a {
  color: #d88169;
}

.restore-item {
  color: #d88169;
}

.select2-container .select2-dropdown,
.select2-container .select2-selection {
  border: 1px solid #f1f1f1;
}

.woocommerce-MyAccount-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

body fieldset legend {
  padding: 0 10px;
  color: #d88169;
}

body fieldset {
  display: block;
  min-inline-size: min-content;
  margin-inline: 2px;
  border-width: 1px;
  border-color: threedface;
  border-image: initial;
  padding-block: 0.35em 0.625em;
  padding-inline: 0.75em;
  border-radius: 4px;
  margin: 20px 0;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 49.5%;
}

/* Effet hover */

.woocommerce a.wc-forward:hover,
.woocommerce button.button:hover {
  background-image: linear-gradient(to right, #D97A5C, #D98873);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Optionnel : style spécifique au bouton WooCommerce */
.woocommerce-form-login__submit.woocommerce button.button {
  width: 100%;
  /* si tu veux qu’il prenne toute la largeur du conteneur WooCommerce */
}


/* LOGIN */

.woocommerce form .form-row label {
  margin-bottom: 6px;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  border: 1px solid #f1f1f1;
}

.woocommerce form .form-row.submit-login {
  margin-top: 20px;
}

.container-login .woocommerce-LostPassword a {
  color: #D98873;
}

.container-login .woocommerce-LostPassword {
  margin-top: 20px;
}

.container-login {
  max-width: 600px;
  margin: auto;
}

.woocommerce form.login {
  border: none;
  background: none;
  padding: 20px 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  padding-top: 10px;
}

/***************** SINGLE *****************/

.space-between-blocs {
  display: block;
  height: 50px;
}

.single .entry-content,
.single-post .entry-content {
  font-weight: 300;
}

.single .entry-content h2,
.single-post .entry-content h2 {
  font-size: 32px;
}

.single .entry-content ul,
.single-post .entry-content ul {
  list-style: disc;
  margin-top: 20px;
  list-style-position: inside;
  line-height: 26px;
}

.single .entry-content h2,
.single-post .entry-content h2 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.img-full {
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 70px 0;
}

.img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background-light {
  padding: 5rem;
  background-color: #FAF7F2;
  border-radius: 0.75rem;
}

.flex-content {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 70px 0;
}

.flex-content.reverse {
  flex-direction: row-reverse;
}

.flex-content .wrap-img {
  width: 50%;
}

.flex-content .content-text {
  width: 50%;
  padding: 50px;
}

.flex-content.products-section .content-text {
  padding: 0 50px 50px 50px;
}

.flex-content .wrap-img {
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
}

.flex-content.two-img .wrap-img {
  width: 50%;
  height: 350px;
}

.flex-content .wrap-img.product-lines {
  height: 350px;
}

.flex-content .wrap-img.solo {
  height: auto;
}

.flex-content img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}

.flex-content h2 {
  margin-bottom: 30px;
}

.flex-content h3 {
  margin-bottom: 30px;
  font-size: 22px;
}

.flex-content.products-section h3 {
  margin-bottom: 10px;
}

.flex-content.products-section a.btn-orange {
  color: white;
  font-size: 18px;
  padding: 12px 25px;
}

.flex-content .product-img img {
  border-radius: 20px;
}

.flex-content .product-img {
  margin-bottom: 50px;
  position: relative;
}

.flex-content.products-section .wrap-product-img {
  width: 50%;
  border-radius: 20px;
}

.flex-content .product-block {
  text-decoration: none;
  position: relative;
}

.flex-content p {
  line-height: 26px;
  margin-bottom: 15px;
}

.single-post .entry-content p {
  line-height: 26px;
}

.single-post .entry-content a {
  color: #d9826a;
}

.single-cta-btn {
  margin: 35px 0;
}

.single-cta-btn a {
  background-color: #d9826a;
  padding: 15px 25px;
  border-radius: 12px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.entry-content .single-cta-btn a {
  color: white;
  text-decoration: none;
}

.back-write {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.figcaption-content .price {
  color: white;
}

.figcaption-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  pointer-events: none;
}

.figcaption-space>*+* {
  margin-top: 1rem;
}

.figcaption-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
}

.figcaption-badge-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0 !important;
}

.figcaption-title {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.figcaption-cta {
  margin-top: 0.75rem;
}

.figcaption-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.5s ease;
  cursor: pointer;
}

.figcaption-cta-icon {
  margin-left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/***************** DEFAULT PAGE *****************/

.default-page-content .entry-content {
  margin-top: 50px;
}

.default-page-content h2 {
  font-size: 26px;
  margin: 30px 0;
}

.default-page-content ul {
  padding-left: 20px;
  line-height: 30px;
  margin: 30px 0;
}

.default-page-content ul li {
  list-style-type: disc;
}

.default-page-content {
  padding: 70px 0;
}

/***************** FORM *****************/

.form-group {
  margin-bottom: 15px;
}

.form-inline {
  display: flex;
  justify-content: space-between;
}

.form-inline>div {
  width: 49%;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="email"] {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 12px;
  padding: 0 15px;
  font-size: 16px;
}

#newsletter_email,
.page-contact .form-group select,
.page-contact .form-group textarea,
.page-contact .form-group input[type="text"],
.page-contact .form-group input[type="tel"],
.page-contact .form-group input[type="number"],
.page-contact .form-group input[type="email"] {
  background-color: white;
}

.form-group textarea {
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 20px;
  font-size: 16px;
}

/***************** PAGE *****************/
.faq-item {
  border-bottom: 1px solid #ebedf3;
  padding: 15px 0;
}

.faq-question {
  position: relative;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 20px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 100;
  font-size: 45px;
  line-height: 30px;
  color: #e9a383;
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  padding: 10px 0 0;
  font-size: 18px;
  line-height: 30px;
}

.offers-cta-section strong {
  color: #D97A5C;
  font-weight: 600 !important;
}

.wp-block-embed__wrapper,
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe,
.video-wrapper iframe,
.entry-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.entry-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.entry-content .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.single-post .entry-content p {
  margin-bottom: 8px;
}

.breadcrumb-container {
  min-height: 15px;
}

.breadcrumb {
  font-size: 0.75rem;
  opacity: 0.55;
  color: #4b5563;
  position: absolute;
  top: -10px;
  z-index: 99;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 0.3rem;
}


/***************** RESPONSIVE *****************/

@media (max-width: 1535px) {
  .main-title h1 {
    font-size: 38px;
    font-weight: 500;
    line-height: 50px;
  }

  .slogan {
    line-height: 38px;
    font-size: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 500px;
  }

  .hero-left {
    padding-top: 0;
    padding-right: 62px;
  }

  .hero-left .main-title {
    padding-right: 3rem;
  }

  .hero-cta {
    gap: 10px;
  }

  /*  h2 {
    font-size: 38px;
  }*/
}

@media (max-width: 1350px) {
  .hero-cta a:nth-child(2) {
    width: auto;
  }
}

@media (max-width: 1279px) {
  header nav ul {
    display: none !important;
  }

  .mobile-nav-canvas ul li {
    margin: 0;
  }

  .mobile-nav-canvas ul li ul {
    padding: 0;
  }

  #burger {
    display: block !important;
    margin-right: 0.5rem;
  }

  .logo-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-section {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .main-title h1 {
    font-size: 32px;
    line-height: 44px;
  }

  .slogan {
    line-height: 30px;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .hero-cta {
    margin-top: 2rem;
  }

  .for-who {
    display: none;
  }

  .for-who-responsive>div {
    max-width: 540px;
    margin: auto;
  }

  .for-who-responsive {
    display: block;
    text-align: center;
  }

  .transformation-container {
    margin-left: -80px;
    margin-right: -80px;
  }

  .transformation-blocs.flex {
    display: block;
  }

  .transformation-blocs>div {
    width: 100%;
  }

  .transformation-blocs>div:nth-child(2) {
    max-width: 80%;
    margin: auto;
  }

  .transformation-blocs h4 {
    margin-top: 30px;
    margin-bottom: 40px;
    text-align: center;
  }

  .transformation-blocs .cards {
    place-items: center;
  }

  .transformation-blocs .cards>div {
    width: 250px;
  }

  .offers-cta svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
  }
}

@media (max-width: 1180px) {
  .transformation-container.flex {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }

  .transformation-container>div:not(.arrow-next) {
    padding-bottom: 32px;
  }

  .transformation-container>div {
    margin: auto;
  }

  .transformation-container .arrow-next {
    margin: 20px;
    transform: rotate(90deg);
  }

  .transformation-container a {
    position: relative;
    left: initial;
    --tw-translate-x: none;
    width: 100%;
    max-width: 100%;
    bottom: 0;
    margin-top: 20px;
  }

}

@media (max-width: 1023px) {
  .background-light {
    padding: 1rem;
  }

  .single .entry-content h2,
  .single-post .entry-content h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .flex-content.img-right {
    flex-direction: column-reverse;
  }

  .flex-content {
    flex-wrap: wrap;
  }

  .flex-content .content-text {
    width: 100%;
    padding: 0;
  }

  .flex-content .wrap-img {
    width: 100%;
  }

  .section-title {
    position: relative;
    background-color: white;
    border-radius: 20px 20px 0 0;
    top: -58px;
    padding-top: 58px;
  }

  .page-order-received p.woocommerce-thankyou-order-received {
    font-size: 30px;
  }

  .page-order-received .woocommerce ul.order_details li {
    margin-bottom: 20px;
  }

  .page-panier .cart-summary {
    padding: 20px 25px;
  }

  .page-panier .cart-totals {
    padding: 20px 25px;
  }

  .page-panier .cart-summary .product-subtotal {
    font-size: 18px;
  }

  .hero-right,
  .hero-left {
    width: 100%;
  }

  .hero-left {
    padding: 0;
    margin-bottom: 50px;
  }

  .hero-right {
    display: flex;
  }

  .hero-img-left img:nth-child(2) {
    display: none;
  }

  .hero-img-left,
  .hero-img-right {
    display: block
  }

  .hero-section>div.flex {
    display: block;
  }

  .hero-img-right img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .page-panier .cart-summary {
    width: 100%;
  }

  .page-panier .cart-totals {
    width: 100%;
    margin: 20px 0 0;
  }
}

@media (max-width: 767px) {
  .breadcrumb {
    padding: 0 10px;
    text-align: center;
    position: relative;
    top: 0;
    margin-bottom: 10px;
  }

  .modal-content {
    width: 95%;
  }

  .radio-group {
    display: block;
  }

  .radio-group>div {
    line-height: 38px;
  }

  .hero-img-left {
    display: none;
  }

  .transformation-blocs .cards {
    display: block;
  }

  .transformation-blocs .cards>div {
    width: 100%;
    margin-bottom: 20px;
  }

  .transformation-blocs h4 {
    font-size: 18px;
  }

  .transformation-blocs h5 {
    font-size: 16px;
  }

  .transformation-container>div:not(.arrow-next) {
    padding-bottom: 32px;
    padding: 20px;
  }

  .page-panier .cart-summary .cart-item {
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .page-panier .cart-summary .product-subtotal {
    position: absolute;
    bottom: 30px;
    right: 42px;
  }

  .page-panier .cart-summary .cart-item-image,
  .page-panier .cart-summary .product-quantity {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-panier .cart-summary .cart-item-image {
    height: auto;
  }

  .page-panier .cart-summary .product-quantity,
  .page-panier .cart-summary .product-subtotal {
    padding: 10px 20px;
  }

  .page-panier .cart-summary .cart-item-details {
    width: 100%;
    padding: 10px 20px;
  }

  .page-panier .cart-summary .product-price {
    font-size: 16px;
  }

  .page-panier .cart-summary .product-subtotal {
    font-size: 16px;
  }

  .page-panier .cart-header .cart-header-quantity,
  .page-panier .cart-header .cart-header-subtotal {
    display: none;
  }

  .page-panier .quantity-selector {
    max-width: 143px;
  }

  .qty-btn {
    padding: 8px 10px;
    font-size: 18px;
    width: 45px;
    height: 45px;
  }

  .page-panier .cart-summary .cart-item-details h3 a {
    font-size: 18px;
  }

  .page-panier .cart-summary .remove-item {
    position: relative;
    bottom: 0;
  }

  .page-panier .cart-totals {
    width: 100%;
    margin-left: 0;
  }


}

@media (max-width: 639px) {
  .cart-side-content {
    padding: 20px;
  }

  .mini-cart-items .product-name .remove-item-mini-cart a {
    font-size: 13px;
  }

  .mini-cart-items .product-name {
    font-size: 14px;
    padding: 10px 10px 25px 25px;
  }

  .woocommerce-mini-cart-item .wrap_img {
    width: 100px;
    height: 130px;
  }

  .mini-cart-items .product-total {
    font-size: 13px;
    padding: 10px 0;
  }

  .continue-shopping {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .cart-panel-buttons {
    text-align: center;
    margin-top: 40px;
  }

  .page-commander h2,
  .page-commander h3 {
    font-size: 18px;
  }

  .page-order-received p.woocommerce-thankyou-order-received {
    line-height: 28px;
  }

  .page-order-received .woocommerce-order {
    padding: 30px 25px;
  }

  .page-order-received address {
    font-size: 14px;
  }

  .page-order-received .woocommerce-table__product-name {
    flex-wrap: wrap;
  }

  .page-order-received .woocommerce ul.order_details li {
    border-right: 0;
  }

  .page-order-received p.woocommerce-thankyou-order-received {
    font-size: 22px;
  }

  .my-account-nav {
    display: inline;
  }

  .logo-site {
    width: 130px;
  }

  .hero-left .main-title {
    padding: 0;
    text-align: center;
  }

  .slogan {
    max-width: 100%;
  }

  .hero-cta a,
  .hero-cta a:nth-child(2) {
    width: 100%;
  }

  .cta-section a br {
    display: block;
  }
}

@media (min-width: 1280px) {
  #burger {
    display: none !important;
  }

  #mobile-menu {
    display: none !important;
  }

  .logo-group {
    display: block;
  }
}

@media (min-width: 1536px) {
  ul.main-nav {
    gap: 2rem;
  }
}

/* sm = 640px */
@media (max-width: 700px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* md = 768px */
@media (min-width: 768px) and (max-width: 820px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* lg = 1024px */
@media (min-width: 1024px) and (max-width: 1100px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* xl = 1280px */
@media (min-width: 1280px) and (max-width: 1350px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 2xl = 1536px */
@media (min-width: 1536px) and (max-width: 1600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.edit-tool {
  padding: 12px;
  background-color: #0E0E0E;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.5s ease;
  display: inline-block;
  box-shadow: 0 5px 22px rgb(221 219 219 / 30%);
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}