/* Mahoney Pricing Table – frontend + editor */

/* Container van de kaarten */
.mahoney-pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch; /* kaarten even hoog per rij */
}

/* Eén kaart: kolom-layout zodat bottom-blok naar beneden kan duwen */
.mahoney-pricing-card {
  background: #f8f8f8;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.10);
  width: 280px;
  padding: 0 0 22px;
  display: flex;             /* NIEUW */
  flex-direction: column;    /* NIEUW */
}

/* Onderkant: prijs + note + button, naar onderen geduwd */
.mahoney-pricing-card__bottom {
  margin-top: auto;          /* duwt dit blok naar de onderkant */
  padding-top: 8px;
}


/* Bovenbalk met productnaam */
.mahoney-pricing-card__header {
  background: #88ac94;              /* groene balk */
  background: linear-gradient(180deg, #8fb59b 0%, #7aa584 100%);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 6px 6px 0 0;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

/* Subtitel (Binnen 24 uur live / Bestaande omgeving?) */
.mahoney-pricing-card__subtitle {
  padding: 14px 20px 6px;
  font-weight: 600;
  text-align: left;
  font-size: 15px;
  color: #333333;
}

/* Features lijst */
.mahoney-pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0 24px 10px;
  font-size: 14px;
  color: #444444;
}

/* Eén feature-regel */
.mahoney-pricing-card__features li {
  margin: 4px 0;
  padding-left: 18px;
  position: relative;
}

/* Checkmark voor features */
.mahoney-pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7aa584;
  font-weight: 700;
}

/* Prijs */
.mahoney-pricing-card__price {
  font-size: 22px;
  font-weight: 700;
  padding: 4px 24px 0;
  color: #333333;
}

/* Kleine tekst onder prijs (excl. btw) */
.mahoney-pricing-card__price-note {
  font-size: 13px;
  color: #777777;
  padding: 0 24px 12px;
}

/* Wrapper voor button */
.mahoney-pricing-card__button-wrap {
  padding: 0 24px;
  margin-top: auto;
}

/* "Meer informatie" button */
.mahoney-pricing-card__button {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 20px;
  background: #6f9a7c;
  color: #ffffff;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

/* Hover-state */
.mahoney-pricing-card__button:hover {
  background: #5b8668;
  color: #ffffff;
}

/* Responsief – onder elkaar op mobiel */
@media (max-width: 768px) {
  .mahoney-pricing-card {
    width: 100%;
    max-width: 360px;
  }
}
