/* TCF Pricing - Carte d'information / Warning (paiements locaux) — isolé */
.tcf-paywarn {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 12px;
  /* Avertissement sobre : ambre doux + accent latéral, sans agressivité */
  background: #fffaf0;
  border: 1px solid #fde4ba;
  /* border-left: 4px solid #f59e0b; */
  box-shadow: 0 6px 20px rgba(180, 120, 10, 0.08);
  font-family: "Poppins", sans-serif;
}

.tcf-paywarn * {
  box-sizing: border-box;
}

/* Espacements selon la position dans la section */
.tcf-paywarn--top {
  margin-top: 8px;
  margin-bottom: 32px;
}
.tcf-paywarn--bottom {
  margin-top: 36px;
}

/* Icône */
.tcf-paywarn-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fef3c7;
  color: #b45309;
}
.tcf-paywarn-icon svg {
  display: block;
}

/* Corps */
.tcf-paywarn-body {
  flex: 1 1 auto;
  min-width: 0;
}

.tcf-paywarn-title {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #92400e;
  font-family: "Poppins", sans-serif !important;
}

.tcf-paywarn-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #6b4b16;
}
.tcf-paywarn-text strong {
  color: #92400e;
}
.tcf-paywarn-text a {
  color: #b45309;
  text-decoration: underline;
}

/* CTA optionnel */
.tcf-paywarn-cta {
  margin-top: 14px;
}
.tcf-paywarn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: #f59e0b;
  border: 1px solid #f59e0b;
  transition: filter 0.15s ease;
}
.tcf-paywarn-button:hover {
  filter: brightness(1.06);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
  .tcf-paywarn {
    padding: 16px;
    gap: 12px;
    border-radius: 12px;
  }
  .tcf-paywarn-icon {
    width: 34px;
    height: 34px;
  }
  .tcf-paywarn-title {
    font-size: 16px;
  }
  .tcf-paywarn-text {
    font-size: 14px;
  }
  .tcf-paywarn-button {
    width: 100%;
  }
}
