/* Pages de contenu statique : À propos, Livraison, Retours, FAQ, Contact */

.info-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.info-page__back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.info-page__back:hover { color: var(--terracotta); }

.info-page__eyebrow {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

.info-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 10px;
}

.info-page__intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 4px;
  max-width: 620px;
}

.info-page__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--terracotta-dark);
  background: var(--terracotta-tint);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 6px 14px;
  margin: 12px 0 30px;
}

.info-page__image {
  width: 100%;
  height: 320px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px var(--gold);
  margin: 0 0 32px;
}

.info-section { margin-bottom: 32px; }
.info-section:last-child { margin-bottom: 0; }

.info-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}

.info-section p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.info-section ul,
.info-section ol {
  margin: 0 0 10px;
  padding-left: 20px;
}

.info-section li {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

/* Tableau (livraison) */
.info-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px var(--hairline);
  background: var(--card-alt);
  margin: 12px 0 8px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  min-width: 480px;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}

.info-table thead th {
  font-size: 10.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--hairline);
}

.info-table tbody td { color: var(--ink-soft); }
.info-table tbody td:first-child { color: var(--ink); font-weight: 600; }
.info-table tbody tr + tr td { border-top: 1px solid var(--hairline); }

/* Étapes numérotées (retours) */
.info-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.info-steps li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.info-steps li:last-child { margin-bottom: 0; }

.info-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--terracotta-tint);
  color: var(--terracotta-dark);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-steps li strong { color: var(--ink); }

/* FAQ accordéon */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq-item__chevron {
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-item__chevron { transform: rotate(180deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-item__a p {
  margin: 0;
  padding: 0 18px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 720px) {
  .contact-layout { grid-template-columns: 1fr 300px; align-items: start; }
}

.contact-form {
  background: var(--card);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.25);
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.contact-field span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-field input,
.contact-field textarea {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  outline: none;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--terracotta); }

.contact-submit {
  width: 100%;
  background: var(--terracotta-dark);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  padding: 14px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-submit:hover { background: var(--terracotta-deep); }
.contact-submit:disabled { background: #c9b9ac; cursor: not-allowed; }

.contact-note {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 10px;
  text-align: center;
}

.contact-info {
  background: var(--card-alt);
  border-radius: 20px;
  padding: 22px;
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.contact-info__badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--terracotta-dark);
  background: var(--terracotta-tint);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.contact-info__row:last-child { margin-bottom: 0; }
.contact-info__row svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.contact-info__row div { display: flex; flex-direction: column; gap: 2px; }
.contact-info__label { font-size: 11px; color: var(--ink-muted); }
.contact-info__value { font-size: 13px; color: var(--ink); font-weight: 500; }
