.site-footer {
  margin-top: 5rem;
  border-top: 1px solid hsl(var(--border));
  background:
    linear-gradient(180deg, hsl(var(--primary) / 0.04) 0%, hsl(var(--card)) 12rem),
    hsl(var(--card));
}

.site-footer__trust {
  border-bottom: 1px solid hsl(var(--border) / 0.7);
  background: hsl(var(--background) / 0.65);
}

.site-footer__trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 1rem 0;
}

.site-footer__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.site-footer__trust-item:hover {
  border-color: hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -14px hsl(var(--primary) / 0.45);
}

.site-footer__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.site-footer__main {
  padding: 3rem 1rem 2.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem 2rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__logo {
  display: inline-flex;
  width: fit-content;
}

.site-footer__logo img {
  height: 3.25rem;
  width: auto;
}

.site-footer__tagline {
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 9999px;
  padding: 0.65rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  text-decoration: none;
  box-shadow: 0 12px 28px -18px hsl(var(--primary));
  transition: opacity 0.2s, transform 0.2s;
}

.site-footer__cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-footer__heading {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  width: fit-content;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.site-footer__link:hover {
  color: hsl(var(--primary));
  transform: translateX(2px);
}

.site-footer__link-icon {
  color: hsl(var(--primary) / 0.85);
  flex-shrink: 0;
}

.site-footer__apps {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--primary) / 0.04));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site-footer__apps-copy {
  min-width: min(100%, 16rem);
}

.site-footer__apps-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.site-footer__apps-note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.site-footer__store-badge {
  display: inline-flex;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}

.site-footer__store-badge:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.site-footer__store-badge:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.site-footer__store-badge img {
  height: 4.25rem;
  width: auto;
}

.site-footer__bottom {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background) / 0.55);
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1rem 2rem;
}

.site-footer__legal-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__copyright {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.site-footer__legal-text {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: hsl(var(--muted-foreground));
}

.site-footer__legal-text--muted {
  font-style: italic;
  color: hsl(var(--muted-foreground) / 0.85);
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__made-with {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.site-footer__made-with-icon {
  color: #e11d48;
}

.site-footer__made-with-icon svg {
  fill: #e11d48;
  stroke: #e11d48;
}

.site-footer__lang .lang-selector button {
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  background: hsl(var(--card));
  padding: 0.45rem 0.75rem;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 3.5rem;
  }

  .site-footer__main {
    padding-top: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__apps {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__store-badge img {
    height: 3.5rem;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer mywie_final — version mobile */
.footer-simple__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}

.footer-simple__brand {
  grid-column: 1 / -1;
  text-align: center;
}

.footer-simple__version {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: hsl(var(--primary) / 0.85);
}

.footer-simple__col--legal {
  grid-column: 1 / -1;
}

.footer-simple__heading {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.footer-simple__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-simple__link {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.4;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-simple__link:hover {
  color: hsl(var(--primary));
}

.footer-simple__apps {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.footer-simple__apps-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  color: hsl(var(--foreground));
  white-space: nowrap;
}

.footer-simple__badges {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.footer-simple__badge {
  opacity: 0.8;
}

.footer-simple__badge--btn {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-simple__badge--btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-simple__badge--btn:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.footer-simple__badge img {
  display: block;
  height: 2.5rem;
  width: auto;
}

.footer-simple__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-simple__copyright {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
  text-wrap: balance;
}

.footer-simple__legal {
  margin: 0 auto;
  max-width: 48rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: hsl(var(--muted-foreground));
  text-wrap: balance;
}

.footer-simple__legal--muted {
  color: hsl(var(--muted-foreground) / 0.8);
  font-style: italic;
}

@media (min-width: 640px) {
  .footer-simple__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-simple__brand {
    text-align: left;
  }

  .footer-simple__col--legal {
    grid-column: auto;
  }

  .footer-simple__badge img {
    height: 2.5rem;
  }
}

@media (min-width: 768px) {
  .footer-simple__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-simple__brand {
    grid-column: auto;
  }

  .footer-simple__col--legal {
    grid-column: auto;
  }

  .footer-simple__badge img {
    height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-simple__badge img {
    height: 2.5rem;
  }
}

/* Bandeau réseaux sous le footer */
.footer-social-banner {
  width: 100%;
  background: #6f7a4f;
}

.footer-social-banner__frame {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  line-height: 0;
}

.footer-social-banner__image {
  display: block;
  width: 100%;
  height: auto;
}

.footer-social-banner__hotspot {
  position: absolute;
  display: block;
  border-radius: 0.55rem;
  z-index: 2;
}

.footer-social-banner__hotspot:focus-visible {
  outline: 2px solid #c4a574;
  outline-offset: 3px;
}

.footer-social-banner__hotspot--instagram {
  left: 46.2%;
  top: 25.5%;
  width: 13.8%;
  height: 20%;
}

.footer-social-banner__hotspot--tiktok {
  left: 60.4%;
  top: 25.5%;
  width: 13.8%;
  height: 20%;
}

.footer-social-banner__links {
  display: none;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.85rem 1rem 1.1rem;
  background: #f3ead8;
  border-top: 1px solid rgb(139 105 60 / 0.18);
}

.footer-social-banner__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border-radius: 0.65rem;
  background: #fff;
  color: #5c4030;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.06);
}

.footer-social-banner__link:hover {
  color: #8b5a2b;
}

@media (max-width: 720px) {
  .footer-social-banner__hotspot {
    display: none;
  }

  .footer-social-banner__links {
    display: flex;
  }
}
