.elementor-6621 .elementor-element.elementor-element-f66c90e{--display:flex;--min-height:0px;overflow:visible;}.elementor-6621 .elementor-element.elementor-element-f66c90e.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-6621:not(.elementor-motion-effects-element-type-background), .elementor-6621 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-6621{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-6621{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}@media(max-width:1024px) and (min-width:768px){.elementor-6621 .elementor-element.elementor-element-f66c90e{--width:814px;}}/* Start custom CSS for html, class: .elementor-element-eb1fb34 *//* Footer principal */
.yaay-footer {
  background: #0f172a;
  color: white;
  padding: 64px 16px 0 16px;
}

/* Conteneur centré */
.yaay-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Contenu principal du footer */
.yaay-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

/* Colonnes du footer */
.yaay-footer-column {
  display: flex;
  flex-direction: column;
}

/* Logo du footer */
.yaay-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.yaay-footer-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.yaay-footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

/* Description du footer */
.yaay-footer-description {
  font-size: 16px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Titres des colonnes */
.yaay-footer-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

/* Sous-titre (Moyens de paiement) */
.yaay-footer-title-small {
  font-size: 14px;
  margin-top: 18px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
}

/* Listes de liens */
.yaay-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Liens du footer */
.yaay-footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.yaay-footer-link:hover {
  color: white;
}

/* Animation subtile underline */
.yaay-footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.yaay-footer-link:hover::after {
  width: 100%;
}

/* ============================= */
/* MOYENS DE PAIEMENT (dans légal) */
/* ============================= */

.yaay-footer-payment-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ✅ taille réduite */
.yaay-footer-payment-logo {
  height: 26px;        /* plus petit */
  max-width: 170px;    /* limite la largeur */
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

/* ============================= */
/* BAS DU FOOTER */
/* ============================= */

.yaay-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  padding-bottom: 24px;
}

.yaay-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

/* Copyright */
.yaay-footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Réseaux sociaux en bas (à côté du texte) */
.yaay-footer-bottom-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.yaay-footer-bottom-socials a,
.yaay-footer-bottom-social-disabled {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.yaay-footer-bottom-socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}

.yaay-footer-bottom-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

.yaay-footer-bottom-social-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Responsive - Tablettes */
@media (max-width: 1024px) {
  .yaay-footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .yaay-footer {
    padding: 48px 16px 0 16px;
  }

  .yaay-footer-container {
    padding: 0 16px;
  }

  .yaay-footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
  }

  .yaay-footer-logo-text {
    font-size: 18px;
  }

  .yaay-footer-description {
    font-size: 15px;
  }

  .yaay-footer-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .yaay-footer-link {
    font-size: 13px;
  }

  .yaay-footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
  }
}

/* Mobile très petit */
@media (max-width: 480px) {
  .yaay-footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .yaay-footer-logo {
    justify-content: center;
  }

  .yaay-footer-description {
    text-align: center;
  }

  .yaay-footer-title {
    text-align: center;
  }

  .yaay-footer-links {
    align-items: center;
  }
}

/* États focus accessibilité */
.yaay-footer-link:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 4px;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-f66c90e *//* ============================= */
/* FOOTER FULL WIDTH – FIX GAP */
/* ============================= */

.yaay-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

/* Sécurité : empêche tout padding parasite */
body,
.site,
.site-content,
.elementor,
.elementor-section {
  overflow-x: hidden;
}/* End custom CSS */