/* Cartes d'offres (generateOfferBlocksNew) */

.pricing-wrapper {
  --pw-teal: #34B6B0;
  --pw-teal-light: #5FCAC4;
  --pw-teal-dark: #1F8983;
  --pw-teal-darker: #146661;

  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  width: 340px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.pricing-header {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(160deg, var(--pw-teal-light) 0%, var(--pw-teal) 35%, var(--pw-teal-darker) 100%);
  color: #ffffff;
  text-align: center;
  padding: 28px 20px 40px;
  position: relative;
}

.pricing-header::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  margin: 14px auto 0;
}

.pricing-header h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}

.pricing-body {
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  margin-top: -20px;
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.pricing-body p {
  margin-bottom: 0;
}

.pricing-body .price {
  color: var(--pw-teal);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 18px;
}

.pricing-body .divider {
  border: none;
  border-top: 1px solid #e0e6e6;
  margin: 0 0 20px;
}

.pricing-body .feature-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.pricing-body .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #2a2a2a;
  line-height: 1.4;
}

.pricing-body .feature-list li.highlight {
  color: #e0453c;
  font-weight: 600;
}

.pricing-body .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  margin-top: 1px;
}

.pricing-body .icon-check {
  background: var(--pw-teal);
  color: #ffffff;
}

.pricing-body .icon-plus {
  background: #fce3e1;
  color: #e0453c;
}

.pricing-body .icon-info {
  background: #ffffff;
  border: 1.5px solid var(--pw-teal);
  color: var(--pw-teal);
  font-style: italic;
  font-family: Georgia, serif;
}

.pricing-body .price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}

.pricing-body .price-table td {
  padding: 12px 10px;
  font-size: 16px;
  color: #2a2a2a;
  border-bottom: 1px solid #e8eeee;
}

.pricing-body .price-table tr:last-child td {
  border-bottom: none;
}

.pricing-body .price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--pw-teal);
  white-space: nowrap;
}

.pricing-body .note {
  text-align: center;
  font-size: 16px;
  color: #6b6b6b;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed #d8dede;
}

.pricing-wrapper .link {
  color: var(--pw-teal);
  text-decoration: none;
  font-weight: 600;
}

.pricing-wrapper .link:hover {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .pricing-wrapper {
    gap: 20px;
    padding: 20px 0;
  }
  .pricing-card {
    width: 100%;
    max-width: 340px;
  }
}
