.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-6b9148b:#929495;--e-global-color-b95c848:#000000;--e-global-color-26d8e89:#A8312E;--e-global-color-8e92356:#FFFFFF;--e-global-color-1b4abe2:#E3E6DF;--e-global-color-2f735df:#CB332F;--e-global-typography-primary-font-family:"Serotiva regular";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-4f47adb-font-family:"Serotiva regular";--e-global-typography-4f47adb-font-weight:400;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1264px;}.e-con{--container-max-width:1264px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.red {
    color : #A8312E;
}

.gris {
    color:#929495;
}

.vert-de-gris {
    color:#E3E6DF;
}

.titre_porte {
    color:#333333;
}

.titre_porte:hover {
    color:#9b3933;
    text-decoration:underline;
}

/*CSS BTN  SANS OUTLINE GRIS*/
:root {
  --cta-bg: #E3E6DF;       /* vert très clair */
  --cta-color: #000000;
}

/* Conteneur du bouton */
.cta-swap-btn .elementor-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 26px 10px 20px;   /* gauche / droite */
  font-size: 18px;
  font-weight: 600;
  color: var(--cta-color);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;               /* masque le fond animé */
  background: transparent;
  border: none;
}

/* Fond animé : carré arrondi -> pilule */
.cta-swap-btn .elementor-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;                    /* petit bloc au repos */
  height: 40px;
  background: var(--cta-bg);
  border-radius: 14px;            /* carré très arrondi */
  transform: translate(0%, -50%);
  transition:
    width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-radius 0.35s ease,
    transform 0.35s ease;
  z-index: -1;
}

/* Survol : devient une pilule sur toute la largeur */
.cta-swap-btn .elementor-button:hover::before {
  width: 100%;
  transform: translate(0, -50%);
  border-radius: 14px;
}

/* Texte du bouton */
.cta-swap-btn .elementor-button-text {
  position: relative;
  white-space: nowrap;
  transition: transform 0.25s ease;
}

/* Au survol : le texte se décale un peu vers la gauche */
.cta-swap-btn .elementor-button:hover .elementor-button-text {
  transform: translateX(-8px); /* tu peux ajuster -6 / -10px selon ton œil */
}

/* Flèche gauche (état normal) */
.cta-swap-btn .elementor-button-text::before {
  content: "›";
  position: absolute;
  left: -10px;
  top: 45%;
  transform: translateY(-50%) translateX(0);
  font-size: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
}

/* Flèche droite (état hover) */
.cta-swap-btn .elementor-button-text::after {
  content: "›";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  font-size: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
}

/* Inversion au survol : gauche disparaît, droite apparaît */
.cta-swap-btn .elementor-button:hover .elementor-button-text::before {
  opacity: 0;
  transform: translateY(-50%) translateX(-4px);
}

.cta-swap-btn .elementor-button:hover .elementor-button-text::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


/*CSS BTN AVEC OUTLINE GRIS*/
:root {
  --cta-bg: #e4e9df;      /* fond hover */
  --cta-border: #dce0d6;  /* bordure état normal */
  --cta-color: #000;
}

/* Bouton général */
.cta-outline .elementor-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 28px 10px 24px; 
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--cta-color);
  background: transparent;
  border: 1px solid var(--cta-border);
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* === Fond animé (comme le premier bouton) === */
.cta-outline .elementor-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cta-bg);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: -1;
}

/* Hover : bordure disparaît + fond apparaît */
.cta-outline .elementor-button:hover {
  border-color: transparent;
  background-color: transparent;   /* forcé, fond via ::before */
}

.cta-outline .elementor-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* === Texte === */
.cta-outline .elementor-button-text {
  position: relative;
  white-space: nowrap;
  transition: transform 0.25s ease;
}

/* Au survol : le texte se décale un peu vers la gauche */
.cta-outline .elementor-button:hover .elementor-button-text {
  transform: translateX(-8px); /* tu peux ajuster -6 / -10px selon ton œil */
}

/* === Flèche gauche (état normal) === */
.cta-outline .elementor-button-text::before {
  content: "›";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  font-size: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
}

/* === Flèche droite (état hover) === */
.cta-outline .elementor-button-text::after {
  content: "›";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  font-size: 18px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
}

/* Inversion au survol */
.cta-outline .elementor-button:hover .elementor-button-text::before {
  opacity: 0;
  transform: translateY(-50%) translateX(-4px);
}

.cta-outline .elementor-button:hover .elementor-button-text::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.porte {
  margin-bottom: 20px;
}

.porte__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}

.portes-alternatives .porte__inner {
  background: #F8F8F8;
}

.porte__left {
  display: flex;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.porte__image {
  width: 72px;
  min-width: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.porte__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.porte__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.porte__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  font-family: "Serotiva semi-bold", sans-serif;
}

.porte__subtitle {
  font-weight: 400;
  color: #9b9b9b;
}

.porte__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #4c4c4c;
  font-family: "Serotiva semi-bold", sans-serif;
}

.porte__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.porte__link:hover {
  color:#9b3933;
  text-decoration: underline;
}

.porte__icon {
  font-size: 14px; /* remplacé par ton svg plus tard */
}

.porte__right {
  display: flex;
  align-items: center;
}

.porte__details {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.porte__details:hover {
  text-decoration: underline;
  color:#9b3933;
}

.porte__chevron {
  font-size: 16px;
}

/* Hover global */
.porte__inner:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-1px);
  transition: all 0.15s ease-out;
}

.bloc-reco {
  margin-top: 32px;
  margin-bottom: 24px;
}

.bloc-reco__result {
  font-size: 14px;
  color: #777;
  margin: 0 0 6px;
}

.bloc-reco__header {
  position: relative;
  margin-bottom: 0; /* la carte viendra se coller dessous */
}

.bloc-reco__banner {
  background: linear-gradient(90deg, #c30000, #b30000);
  color: #fff;
  padding: 10px 24px 12px 72px; /* on décale pour laisser la place au personnage */
  border-radius: 12px 12px 0 0;
  font-family: "Serotiva semi-bold", sans-serif;
  font-weight: 600;
  font-size: 35px;
  padding-left: 180px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.etiquette{
    margin-left:15px;
}

.bloc-reco__mascot {
  position: absolute;
  left: 16px;
  bottom: 0;
  transform: translateY(15%); /* ajuste pour qu'il déborde légèrement */
}

.bloc-reco__mascot img {
    display: block;
    height: 127px;
    padding-left: 54px;
    margin-top: -127px;
}

.porte-recommandee .porte__inner {
  border-radius: 0 0 12px 12px;
  border: 1px solid #d33232;
  border-top: none;
  background: #fff5f5;
}

/* Alternatives */
.bloc-alt__titre {
  margin: 24px 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.filtres-produits {
  display: flex;
  align-items: self-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 800px;
}

.filtre {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  flex: 1 1 0;
}

.filtre__label {
  font-size: 13px;
  color: #666;
}

.filtre select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23666' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  font-family: "Serotiva semi-bold", sans-serif;
}

.filtre select:focus {
  outline: none;
  border-color: #d00000;
  box-shadow: 0 0 0 2px rgba(208,0,0,0.15);
}

button#btn-valider {
    background-color: #A8302D;
    border: 0px;
    color: white;
    font-family: "Serotiva semi-bold";
    border-radius: 13px;
}

button#btn-valider:hover {
    background-color: white;
    border:1px solid #A8302D;
    color:#A8302D;
}

button#btn-reset {
    background-color: white;
    border:1px solid #A8302D;
    color:#A8302D;
    font-family: "Serotiva semi-bold";
    border-radius: 13px;
}

button#btn-reset:hover {
    background-color: #A8302D;
    border: 0px;
    color: white;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Serotiva regular';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://portesmetal.paomastudio.fr/wp-content/uploads/2025/12/Serotiva-Regular.ttf') format('truetype');
}
/* End Custom Fonts CSS */