/* =============================================================================
   Footer — Plein Sud (custom, remplace le footer builder)
   ============================================================================= */
/* Espace entre la dernière section (newsletter) et le footer */
.ps-home { padding-bottom: 64px; }

.ps-footer { background: var(--ps-ink); color: #cfc9bd; }
.ps-footer *, .ps-footer *::before, .ps-footer *::after { box-sizing: border-box; }

.ps-footer__inner {
  max-width: var(--ps-content);
  margin: 0 auto;
  padding: 64px 20px 48px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Marque */
.ps-footer__logo img { height: 46px; width: auto; margin-bottom: 18px; }
.ps-footer__desc { font-size: 13.5px; line-height: 1.7; color: #a8a297; max-width: 300px; margin: 0 0 20px; }
.ps-footer__contact { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ps-footer__contact li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #cfc9bd; }
.ps-footer__contact svg { width: 17px; height: 17px; color: var(--ps-gold); flex: 0 0 auto; }
.ps-footer__social { display: flex; gap: 10px; }
.ps-footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: #cfc9bd; transition: background .2s, color .2s, border-color .2s;
}
.ps-footer__social svg { width: 17px; height: 17px; }
.ps-footer__social a:hover { background: var(--ps-gold); border-color: var(--ps-gold); color: #fff; }

/* Colonnes de liens */
.ps-footer__col h4 {
  font-family: var(--ps-font-body);
  font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; margin: 0 0 20px; padding-bottom: 12px; position: relative;
}
.ps-footer__col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--ps-gold); }
.ps-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ps-footer__col ul a { color: #b7b1a6; text-decoration: none; font-size: 13.5px; transition: color .2s; }
.ps-footer__col ul a:hover { color: var(--ps-gold); }

/* Paiements */
.ps-footer__pays { display: flex; flex-wrap: wrap; gap: 8px; }
.ps-pay {
  background: #fff; color: #2a2724; border-radius: 6px;
  padding: 6px 10px; font-size: 11px; font-weight: 700; letter-spacing: .02em;
}
.ps-footer__payimg img { max-width: 100%; height: auto; display: block; }
.ps-footer__secure { font-size: 12px; color: #8f897e; line-height: 1.6; margin: 16px 0 0; }

/* Barre du bas */
.ps-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.ps-footer__bottom-inner {
  max-width: var(--ps-content);
  margin: 0 auto;
  padding: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #8f897e;
}
.ps-footer__legal a { color: var(--ps-gold); text-decoration: none; }
.ps-footer__legal a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 991px) {
  .ps-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px 36px; }
  .ps-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .ps-footer__inner { grid-template-columns: 1fr; }
  .ps-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}
