/* =========================================
   Variables & Configuration de base
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Inter:wght@300..700&display=swap');
html {
  scroll-behavior: smooth;}

:root {
    /* Couleurs */
    --c-or: #b89968;
    --c-fond: #faf6f0;
    --c-bleu-nuit: #2d3e4f;
    --c-blanc: #ffffff;
    --footer-bg: #2d3e4f;       
    --footer-accent: #b89968;    
    --footer-text-light: #f5efe5;

    /* Polices */
    --font-titre: 'Bodoni Moda', serif;
    --font-texte: 'Inter', sans-serif;

    /* Tailles & Radius */
    --radius-global: 4px;
}
button{
  cursor: pointer;
}
body {
    font-family: var(--font-texte);
    font-size: 18px;
    color: var(--c-bleu-nuit);
    background-color: var(--c-fond);
    margin: 0;
    padding: 0;
}
.header-cart-container svg {
    stroke: #2d3e4f;
}

.chiffre-stat {
    font-family: var(--font-titre);
    font-size: 56px;
    color: var(--c-bleu-nuit);
    line-height: 1.2;
}

.titre-carte {
    font-family: var(--font-titre);
    font-size: 22px;
    color: var(--c-bleu-nuit);
    margin-top: 15px;
    margin-bottom: 10px;
}

.sur-titre {
    font-family: var(--font-texte);
    font-size: 13px;
    color: var(--c-or);
    text-transform: uppercase;
    letter-spacing: 1.95px;
    font-weight: 400;
}

/* =========================================
   Layout & Composants
   ========================================= */
.container-custom {
    max-width: 1280px;
    padding-inline: 32px;
    margin: 0 auto;
    width: 100%;
}

.btn-or {
    background-color: var(--c-or);
    color: var(--c-bleu-nuit);
    border-radius: var(--radius-global);
    padding: 20px 32px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--c-or);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 1;
}

.btn-or:hover {
    background-color: transparent;
    color: var(--c-or);
}

.btn-outline-blanc {
    background-color: transparent;
    color: var(--c-blanc);
    border: 1px solid var(--c-blanc);
    border-radius: var(--radius-global);
    padding: 20px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.4px;
    line-height: 1;
}

.btn-outline-blanc:hover {
    background-color: var(--c-blanc);
    color: var(--c-bleu-nuit);
}


header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: #fff;
    z-index: 999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    gap: 15px;
}

.header-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.header .logo a{
    font-size: 54px;
    text-align: center;
    color: var(--c-bleu-nuit);
    margin-bottom: 0;
    line-height: 1;
    font-family: 'Bodoni Moda';
    display: block;
}
.logo.font-titre {
    text-align: center;
}
header .logo span {
    font-size: 9px;
    font-family: 'Inter';
    text-transform: uppercase;
    display: block;
    font-weight: 400;
    letter-spacing: 2.7px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    gap: 20px;
}

header .menu-item a {
    color: var(--c-bleu-nuit);
    font-size: 13px;
    margin: 0 10px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1.95px;
    text-decoration: none;
    transition: color 0.2s ease;
}

header .menu-item a:hover {
    color: #b89968; /* Changement de couleur au survol */
}

a.phone.font-titre {
  font-family: 'Bodoni Moda';
    color: #b89968;
    padding: 10px 25px 10px 0;
    line-height: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    text-decoration: none;
}

a.phone.font-titre svg {
    position: relative;
    width: 16px;
}

header .btn-outline-blanc {
    color: #2d3e4f;
    border: 1px solid #2d3e4f;
    padding: 15px 20px !important;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

.mob-btn{
  display: none;
}
.burger-menu, .menu-close {
    display: none;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 20px; 
}

.phone-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-hours {
    font-size: 10px;
    color: #6E6358;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.header-separator {
    width: 1px;
    height: 24px;
    background-color: #b89968;
}

header .btn-wishlist {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: #2d3e4f;
    top: 4px;
}

.wishlist-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #B89968;
    color: #fff;
    font-size: 9px;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-account {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #2d3e4f;
}
.btn-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color); 
    transition: color 0.3s;
    top: 2px;
}

.btn-cart:hover, .btn-wishlist:hover {
    color: var(--accent-color); 
}

.cart-badge, .wishlist-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #b89968; 
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}
/* ==========================================================================
   HEADER - RESPONSIVE MOBILE & TABLETTE (Max 991px)
   ========================================================================== */
@media (max-width: 991px) {
    
    /* Ajustement global du header */
    header {
        padding: 12px 0;
    }

    /* Redimensionnement du logo pour éviter l'overflow */
    header .logo {
        font-size: 32px; 
    }
    header .logo span {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    /* Bouton Burger (Couleur calquée sur ton bleu nuit) */
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        order: 3; /* Aligné à gauche */
    }

    .burger-bar {
        width: 100%;
        height: 2px;
        background-color: var(--c-bleu-nuit);
        transition: all 0.3s ease;
    }

    /* Animation de transformation en croix (is-active) */
    .burger-menu.is-active .burger-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .burger-menu.is-active .burger-bar:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.is-active .burger-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Placement du logo au centre */
    header .logo {
        order: 2;
    }

    /* Actions à droite */
    .header-action {
        order: 3;
        gap: 20px;
    }

    /* Masquer le texte du téléphone sur mobile pour gagner de la place */
    a.phone.font-titre {
        padding: 10px 5px;
    }
    a.phone.font-titre span {
        font-size: 13px;
        position: relative;
    }

    /* Réduction du bouton brochure */
    header .btn-outline-blanc {
        padding: 10px 12px !important;
        font-size: 11px;
        display: none;
    }

    /* Le Tiroir de Navigation Mobile (Slide-out droit) */
    header nav.main-navigation {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--c-bleu-nuit); /* Inversion chic pour le menu mobile */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
        padding: 80px 30px;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    header nav.main-navigation.is-open {
        right: 0;
        z-index: 2;
    }

    /* Bouton fermer interne */
    .menu-close {
        display: block;
        position: absolute;
        top: 16px;
        right: 20px;
        background: #2d3e4f;
        border: none;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
        line-height: 1;
    }

    /* Reconstruction de la liste en mode vertical */
    header nav ul {
        flex-direction: column;
        gap: 20px;
    }

    header .menu-item {
        width: 100%;
    }

    header .menu-item a {
      color: #fff;
      font-size: 12px;
      margin: 0;
      display: block;
      letter-spacing: 1.5px;
    }
    
    header .menu-item a:hover {
      color: #b89968;
    }
    .header-container {
      padding-inline: 20px;
      gap: 10px;
      justify-content: space-between;
  }
  .mob-btn{
    display: block !important;
    color: #b89968 !important;
    border-color: #b89968 !important;
    margin-top: 20px;
    width: fit-content;
  }


  header .btn-account {
      font-size: 0;
      gap: 0;
  }

  header svg {
      max-width: 18px;
  }

  header .btn-wishlist {
      top: 1px;
  }

  header .btn-cart {
      top: 4px;
  }
}
@media (max-width: 768px) {
  header a.phone.font-titre span{
      font-size: 0;
  }
  .header-action {
    order: 3;
    gap: 10px;
  }
}
body.menu-opened {
    overflow: hidden;
}

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text-light);
  padding: 60px 20px 40px 20px;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 80px 32px 40px 32px;
  }
  .page-template-template-home header .btn-wishlist, .page-template-la-maison header .btn-wishlist{
    top: 0;
  }
  .footer-legal-container .menu-footer li {
      margin-bottom: 0;
  }
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Grille principale responsive */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 64px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Colonne Branding (Logo) */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  opacity: 0.9;
}

.logo-title {
  font-family: 'Bodoni Moda';
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-family: 'Inter';
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 4px;
}

.footer-wave {
  width: 200px;
  color: var(--footer-accent);
  opacity: 0.7;
  margin-bottom: 24px;
}
.footer-wave img{
  object-fit: contain;
}
/* Typographies et textes génériques */
.footer-heading {
  font-family: 'Bodoni Moda';
  font-size: 18px;
  color: var(--footer-accent);
  margin-bottom: 24px;
  font-weight: 500;
  margin-top: 0;
}

.footer-text {
  font-family: 'Inter';
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.footer-text.hours {
  margin-bottom: 24px;
}

/* Style des Menus WordPress Verticaux (Colonnes 2 & 3) */
.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 12px;
}

.footer-menu-list a {
  font-family: sans-serif;
  font-size: 15px;
  color: var(--footer-text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu-list a:hover {
  color: var(--footer-accent);
}

/* Colonne Contacts (Colonne 4) */
.footer-phone {
  display: block;
  font-family: serif;
  font-size: 24px;
  color: var(--footer-accent);
  text-decoration: none;
  margin-bottom: 16px;
  transition: opacity 0.2s ease;
}

.footer-phone:hover {
  opacity: 0.8;
}

.footer-callback {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter';
    font-size: 14px;
    color: var(--footer-accent);
    text-decoration: none;
    margin-bottom: 32px;
    transition: opacity 0.2s ease;
    background: transparent;
    padding: 0;
    border: none;
    outline: 0;
    box-shadow: none;
}

.footer-callback:hover {
  opacity: 0.8;
}

.footer-callback .lucide-arrow-right {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.footer-address {
  font-style: normal;
  font-family: 'Inter';
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0.5;
  font-family: 'Inter';
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Barre du bas (Copyright, Légaux & Réseaux) */
.footer-bottom {
  border-top: 1px solid rgb(184 153 97 / 25%);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.menu-footer {
    list-style: none;
    padding: 0;
}

.menu-footer li a {
    color: #fff;
    font-size: 16px;
}

.menu-footer li {
    margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-family: 'Inter';
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  order: 2;
}

@media (min-width: 768px) {
  .footer-copyright {
    order: 1;
  }
}

/* Conteneur du menu légal WordPress horizontal */
.footer-legal-container {
  order: 3;
}

@media (min-width: 768px) {
  .footer-legal-container {
    order: 2;
  }
}

/* Ciblage de la liste générée par WP pour les liens légaux */
.footer-legal-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-container li a {
  font-family: 'Inter';
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-container a:hover {
  color: var(--footer-text-light);
}

/* Icônes Réseaux Sociaux */
.footer-socials {
  display: flex;
  gap: 16px;
  order: 1;
}

@media (min-width: 768px) {
  .footer-socials {
    order: 3;
  }
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text-light);
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

a.social-icon {
    border: 1px solid #ffffff42;
    padding: 5px;
    border-radius: 100%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.social-icon svg {
    max-width: 17px;
    stroke: #b89968;
}

a.social-icon:hover {
    background: #ffffff26;
}
.page-template-default section p, .page-template-default section li{
    font-size: 16px;
}
.page-template-default section table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px 0; 
    font-size: 14px;
    line-height: 1.5;
}

.page-template-default section table th {
    text-align: left; 
    padding: 14px 16px;
    font-weight: 600;
    color: #2d3e4f;
    background-color: #f8f9fa; 
    border-bottom: 2px solid #e9ecef;
}

.page-template-default section table td {
    text-align: left;
    padding: 14px 16px;
    vertical-align: top;
    color: #2d3e4f;
    border-bottom: 1px solid #e9ecef;
}

.page-template-default section table tbody tr:hover {
    background-color: #fdfdfd;
}

.page-template-default section .container-fluid {
    padding: 0 15px;
}
@media screen and (max-width: 768px) {
    .page-template-default section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.floating-callback-btn {
					position: fixed;
					bottom: 54px;
					right: 24px;
					z-index: 40;
					background-color: #2D3E4F;
					color: #FAF6F0;
					height: 56px;
					border-radius: 9999px;
					box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
					display: flex;
					align-items: center;
					justify-content: center;
					gap: 12px;
					border: none;
					cursor: pointer;
					outline: none;
					transition: transform 0.3s ease, background-color 0.3s ease;
					width: 56px;
					padding: 0;
				}

				.floating-callback-btn:hover {
					transform: scale(1.05);
					background-color: #24323F;
				}

				.floating-callback-btn svg {
					display: block;
					flex-shrink: 0;
				}

				.floating-callback-btn span {
					font-family: 'Inter';
					font-size: 14px;
					font-weight: 500;
					white-space: nowrap;
					display: none;
				}

				.lvds-modal {
					position: fixed;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					z-index: 999999;
					display: flex;
					align-items: center;
					justify-content: center;
					opacity: 0;
					pointer-events: none;
					transition: opacity 0.3s ease;
				}

				.lvds-modal.is-open {
					opacity: 1;
					pointer-events: auto;
				}

				.lvds-modal .lvds-modal-overlay {
					position: absolute;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background-color: rgba(0, 0, 0, 0.75);
					backdrop-filter: blur(5px);
				}

				.lvds-modal .lvds-modal-container {
					position: relative;
					width: 90%;
					max-width: 480px;
					background: #111111;
					padding: 45px 30px 35px 30px;
					border: 1px solid rgba(184, 153, 104, 0.2);
					border-radius: 4px;
					box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
					z-index: 2;
					transform: translateY(-30px);
					transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
					box-sizing: border-box;
				}

				.lvds-modal.is-open .lvds-modal-container {
					transform: translateY(0);
				}

				.lvds-modal .lvds-modal-container.callback-block {
					background-color: #f2f2f2 !important;
					border: 1px solid rgba(184, 153, 104, 0.15);
					padding: 40px 30px;
					border-radius: 8px;
				}

				.lvds-modal .lvds-modal-container.callback-block .lvds-modal-close {
					position: absolute;
					background: none;
					border: none;
					font-size: 32px;
					cursor: pointer;
					line-height: 1;
					padding: 0;
					transition: color 0.2s ease, transform 0.2s ease;
					color: #888888;
					top: 10px;
					right: 15px;
				}

				.lvds-modal .lvds-modal-container.callback-block .lvds-modal-close:hover {
					color: #B89968;
					transform: scale(1.1);
				}

				.lvds-modal .advisor-avatars-group {
					display: flex;
					justify-content: center;
					margin-bottom: 8px;
				}

				.lvds-modal .advisor-avatars-group img {
					width: 65px;
					height: 65px;
					border-radius: 50%;
					object-fit: cover;
					border: 3px solid #f2f2f2;
					box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
				}

				.lvds-modal .advisor-avatars-group img:not(:first-child) {
					margin-left: -18px;
				}

				.lvds-modal .callback-block .advisor-names-subtext {
					font-size: 12px;
					text-transform: uppercase;
					letter-spacing: 1.5px;
					color: #777777;
					display: block;
					margin-bottom: 15px;
          text-align: center;
				}

				.lvds-modal .callback-block .cta-card-mini-tag.gold-accent-text {
					color: #B89968;
					font-size: 10px;
					font-weight: 700;
					letter-spacing: 2px;
					background: rgba(184, 153, 104, 0.1);
					padding: 3px 8px;
					border-radius: 3px;
					display: inline-block;
				}

				.lvds-modal .callback-block .cta-card-title {
					color: #2d3e4f !important;
          font-size: 24px;
          font-weight: 600;
          margin: 12px 0 8px 0;
          font-family: 'Bodoni Moda';
				}

				.lvds-modal .callback-block .cta-card-description {
					color: #555555 !important;
					font-size: 14px;
					line-height: 1.5;
					max-width: 360px;
					margin: 25px 0;
				}

				.lvds-modal .cf7-custom-wrapper form br {
					display: none;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-form-control-wrap {
					display: block;
					margin-bottom: 14px;
				}

				.lvds-modal .cf7-custom-wrapper input[type="text"],
				.lvds-modal .cf7-custom-wrapper input[type="tel"] {
					width: 100%;
					height: 48px;
					background-color: #ffffff !important;
					color: #1a1a1a !important;
					border: 1px solid #dcdcdc;
					border-radius: 4px;
					padding: 0 15px;
					font-size: 15px;
					box-sizing: border-box;
					transition: border-color 0.25s ease, box-shadow 0.25s ease;
				}

				.lvds-modal .cf7-custom-wrapper input[type="text"]:focus,
				.lvds-modal .cf7-custom-wrapper input[type="tel"]:focus {
					border-color: #B89968 !important;
					box-shadow: 0 0 0 3px rgba(184, 153, 104, 0.12);
					outline: none;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-radio {
					display: flex !important;
					justify-content: space-between;
					gap: 8px;
					margin: 20px 0 25px 0;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-list-item {
					flex: 1;
					margin: 0 !important;
					position: relative;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-list-item input[type="radio"] {
					position: absolute;
					opacity: 0;
					width: 100%;
					height: 100%;
					cursor: pointer;
					z-index: 2;
					margin: 0;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-list-item-label {
					display: block;
					text-align: center;
					padding: 10px 4px;
					background: #ffffff;
					border: 1px solid #dcdcdc;
					border-radius: 4px;
					font-size: 13px;
					font-weight: 500;
					color: #2d3e4f !important;
					transition: all 0.2s ease;
					user-select: none;
				}
        .lvds-modal .cf7-custom-wrapper input[type="text"]::placeholder,
        .lvds-modal .cf7-custom-wrapper input[type="tel"]::placeholder {
            color: #888888 !important;
            opacity: 1;
        }
				.lvds-modal .cf7-custom-wrapper .wpcf7-list-item:hover .wpcf7-list-item-label {
					border-color: #B89968;
					color: #B89968;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label {
					background-color: #B89968 !important;
					border-color: #B89968 !important;
					color: #ffffff !important;
				}

				.lvds-modal .cf7-custom-wrapper input[type="submit"] {
					width: 100%;
					height: 50px;
					background-color: #2d3e4f !important;
					color: #ffffff !important;
					border: none;
					border-radius: 4px;
					font-size: 13px;
					font-weight: 600;
					letter-spacing: 1.5px;
					cursor: pointer;
					transition: background-color 0.25s ease, transform 0.1s ease;
				}

				.lvds-modal .cf7-custom-wrapper input[type="submit"]:hover {
					background-color: #B89968 !important;
				}

				.lvds-modal .cf7-custom-wrapper input[type="submit"]:active {
					transform: scale(0.98);
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-not-valid-tip {
					color: #c92a2a;
					font-size: 12px;
					text-align: left;
					margin-top: 5px;
					display: block;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-response-output {
					margin: 20px 0 0 0 !important;
					padding: 12px !important;
					font-size: 14px;
					border-radius: 4px;
					border: 1px solid transparent !important;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-status-mail-sent {
					background-color: #ebfbee !important;
					border-color: #40c057 !important;
					color: #2b8a3e !important;
				}

				.lvds-modal .cf7-custom-wrapper .wpcf7-status-validation-failed,
				.lvds-modal .cf7-custom-wrapper .wpcf7-status-aborted {
					background-color: #fff5f5 !important;
					border-color: #ffc9c9 !important;
					color: #c92a2a !important;
				}

				@media (min-width: 640px) {
					.floating-callback-btn {
						width: auto;
						padding-left: 24px;
						padding-right: 24px;
						justify-content: flex-start;
					}
					.floating-callback-btn span {
						display: inline-block;
					}
				}
        .page-template-la-maison-php .aspect-square.w-full.overflow-hidden.mb-\[20px\] {
    border-radius: 100%;
}