/* Container: Grid mit gleichen Höhen */
.mpv-pakete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch; /* Grid-Items werden auf gleiche Höhe gestreckt */
}

/* Jede Karte ist ein Grid-Item */
.mpv-paket-card {
    position: relative;
    height: 100%;
}

/* Innerer Container: volle Höhe + Schatten */
.mpv-paket-inner {
    border: 1px solid #dddddd;
    background: #ffffff;
    border-radius: 8px;
    padding: 18px 18px 20px;
    position: relative;

    /* gleiche Höhe / Aufteilung Inhalt + Footer */
    height: 100%;
    display: flex;
    flex-direction: column;

    /* stärkerer Karten-Schatten */
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Hervorgehobenes Paket – noch stärkerer Schatten + leichte Anhebung */
.mpv-paket-inner.mpv-featured {
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.mpv-paket-inner.mpv-upgrade-target {
    border-width: 2px;
}

/* Badge weiter nach oben / mehr Abstand zum Inhalt */
.mpv-paket-badge {
    position: relative;
   
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 600;
	border:1px solid #000;
    border-radius: 8px;
    margin-bottom: 20px; /* mehr Luft zum Bild / Inhalt */
    z-index: 5;
}

/* Bild-Wrapper mit Schatten unter dem Bild */
.mpv-paket-image-wrapper {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Bild-Schatten */
}

/* Inhalt: füllt den verfügbaren Platz, drückt Footer nach unten */
.mpv-paket-content {
    margin-top: 8px;
    flex: 1 1 auto;
}

.mpv-paket-title {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
}

.mpv-paket-level {
	display:none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
    margin-bottom: 8px;
}

/* Highlights */
.mpv-paket-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.mpv-paket-highlights span {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 11px;
}

/* Kurzbeschreibung */
.mpv-paket-shortdesc {
    margin-bottom: 10px;
}

/* Preis */
.mpv-paket-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Bullet-Editor-Ausgabe */
.mpv-paket-bullets {
    margin-bottom: 12px;
}

/* Footer mit Button – sitzt immer unten in der Karte */
.mpv-paket-footer {
    margin-top: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Button – Grundstil (Farben kommen aus dem Plugin per Inline-Style) */
.mpv-paket-button {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 0;
    box-shadow: none; /* wenn du später Button-Schatten willst, können wir eigene Felder anlegen */
}

/* Hinweistexte */
.mpv-paket-current,
.mpv-paket-upgrade-hint,
.mpv-paket-no-product {
    font-size: 13px;
    opacity: 0.8;
}

.mpv-paket-current {
    color: #15803d;
}

.mpv-paket-upgrade-hint {
    color: #1d4ed8;
}

/* Mobile: eine Spalte */
@media (max-width: 600px) {
    .mpv-pakete-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
