/* ════════════════════════════════════════════════════════════
   BOTUREA — Footer
   ════════════════════════════════════════════════════════════ */

#boturea-footer {
  background: #111112;
  color: #a1a1a6;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 80px;
}

/* ─── Newsletter band ───────────────────────────────────────── */
.bf-newsletter {
  background: var(--g);
  padding: 48px 24px;
}

.bf-newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bf-newsletter-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: var(--weight-bold);
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.2;
}

.bf-newsletter-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.bf-newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.bf-newsletter-form input[type="email"] {
  height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 22px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  width: 260px;
  transition: box-shadow 0.2s ease;
}

.bf-newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.bf-newsletter-form input::placeholder {
  color: #8e8e93;
}

.bf-newsletter-form button {
  height: 44px;
  padding: 0 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 22px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.bf-newsletter-form button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ─── Trust bar ─────────────────────────────────────────────── */
.bf-trust {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 36px 24px;
}

.bf-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bf-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bf-trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bf-trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bf-trust-label {
  font-size: 0.8rem;
  font-weight: var(--weight-semibold);
  color: #e5e5e7;
  line-height: 1.3;
}

.bf-trust-label span {
  display: block;
  font-weight: var(--weight-regular);
  color: #6e6e73;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ─── Main columns ──────────────────────────────────────────── */
.bf-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* Colonne brand */
.bf-brand .bf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.bf-brand .bf-logo img {
  height: 140px;
  width: auto;
}

.bf-brand .bf-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.bf-brand p {
  color: #6e6e73;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 240px;
}

/* Réseaux sociaux */
.bf-socials {
  display: flex;
  gap: 10px;
}

.bf-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.bf-social-btn:hover {
  background: var(--g);
  transform: translateY(-2px);
}

.bf-social-btn svg {
  width: 18px;
  height: 18px;
  stroke: #a1a1a6;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.bf-social-btn:hover svg {
  stroke: var(--white);
}

/* Colonnes nav */
.bf-col h4 {
  font-size: 0.7rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #e5e5e7;
  margin: 0 0 18px;
}

.bf-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bf-col ul li a {
  color: #6e6e73;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.18s ease, transform 0.18s ease;
  display: inline-block;
}

.bf-col ul li a:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* Colonne contact */
.bf-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bf-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bf-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.bf-contact-item a,
.bf-contact-item span {
  color: #6e6e73;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: color 0.18s ease;
}

.bf-contact-item a:hover {
  color: var(--white);
}

/* ─── Bottom bar ────────────────────────────────────────────── */
.bf-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px;
}

.bf-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bf-legal {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bf-legal span {
  color: #48484a;
  font-size: 0.8rem;
}

.bf-legal a {
  color: #6e6e73;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.18s ease;
}

.bf-legal a:hover {
  color: var(--white);
}

.bf-legal .bf-dot {
  color: #3a3a3c;
  user-select: none;
}

/* Icônes paiement */
.bf-payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bf-payment-icon {
  height: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bf-payment-icon svg {
  height: 14px;
  width: auto;
  fill: #a1a1a6;
}

.bf-payment-icon span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #a1a1a6;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bf-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .bf-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px 40px;
    align-items: start;
  }
  .bf-brand p { max-width: 100%; }
  .bf-trust-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Newsletter */
  .bf-newsletter { padding: 32px 20px; }
  .bf-newsletter-inner { flex-direction: column; text-align: center; gap: 20px; }
  .bf-newsletter-form { width: 100%; max-width: 360px; flex-direction: column; }
  .bf-newsletter-form input[type="email"],
  .bf-newsletter-form button { width: 100%; }

  /* Trust → slider horizontal */
  .bf-trust { padding: 24px 0; }
  .bf-trust-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 20px 8px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .bf-trust-inner::-webkit-scrollbar { display: none; }
  .bf-trust-item {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 14px;
  }

  /* Colonnes main → 2 cols */
  .bf-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 20px; }
  .bf-brand { grid-column: 1 / -1; grid-template-columns: 1fr; text-align: center; }
  .bf-brand .bf-logo { justify-content: center; }
  .bf-brand .bf-logo img { height: 80px; }
  .bf-brand p { max-width: 100%; margin: 0 auto 20px; }
  .bf-socials { justify-content: center; }

  /* Bottom */
  .bf-bottom { padding: 20px; }
  .bf-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .bf-legal { justify-content: center; }
  .bf-payments { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  /* Colonnes nav → 2 cols compactes */
  .bf-main { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 16px; }
  .bf-brand { grid-column: 1 / -1; }
  .bf-brand .bf-logo img { height: 60px; }
  .bf-col h4 { font-size: 0.65rem; margin-bottom: 12px; }
  .bf-col ul { gap: 8px; }
  .bf-col ul li a { font-size: 0.8rem; }

  /* Trust compact */
  .bf-trust-item { flex: 0 0 160px; padding: 12px; }
  .bf-trust-icon { width: 36px; height: 36px; }

  #boturea-footer { margin-top: 40px; }
  .bf-bottom { padding: 16px; }
}
