/* A konténer, ami körbeveszi a kártyákat */
.bernarion-packages-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* Térköz a kártyák között */
    justify-content: center;
    padding: 20px;
}

/* Az egyedi csomag kártya */
.bernarion-package-card {
    background-color: #fff;
    border: 2px solid #8E5FEB;
    /* Lila keret */
    border-radius: 25px;
    /* Lekerekítés */
    padding: 30px 25px;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bernarion-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(142, 95, 235, 0.15);
}

/* Fejléc (cím és ár) */
.package-header {
    margin-bottom: 20px;
}

.package-title {
    font-size: 2.5rem;
    /* 40px */
    color: #1B0A3B;
    /* Sötét lila */
    font-weight: 700;
    margin: 0 0 10px 0;
}

.package-price {
    font-size: 2.25rem;
    /* 36px */
    color: #8E5FEB;
    /* Lila */
    font-weight: bold;
}

/* WooCommerce ár formázás felülírása, ha szükséges */
.package-price .woocommerce-Price-amount {
    color: #8E5FEB !important;
    font-size: inherit !important;
}

.package-price .woocommerce-Price-currencySymbol {
    font-size: inherit !important;
}

/* Törzs (leírás és jellemzők) */
.package-body {
    flex-grow: 1;
    /* Kitölti a rendelkezésre álló helyet */
    text-align: left;
    margin-bottom: 25px;
}

.package-description {
    text-align: center;
    color: #555;
    font-size: 1rem;
    /* 16px */
    margin-bottom: 25px;
}

.package-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features-list li {
    display: flex;
    align-items: flex-start;
    /* Igazítás a több soros szövegekhez */
    margin-bottom: 15px;
    font-size: 1rem;
    /* 16px */
    color: #333;
}

/* A pipa SVG stílusa */
.package-features-list li svg {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    /* Ne zsugorodjon */
    margin-top: 2px;
    /* Finomhangolás */
}

.package-features-list li svg path {
    stroke: #8E5FEB;
    /* Pipa színe */
    stroke-width: 3;
}

/* Lábléc (rövid leírás és gomb) */
.package-footer {
    margin-top: auto;
    /* A láblécet az aljára tolja */
}

.package-short-description {
    color: #aaa;
    font-size: 0.875rem;
    /* 14px */
    margin-bottom: 20px;
}

/* A gomb stílusai (feltételezve, hogy vannak alap .bernarion-btn stílusaid) */
.bernarion-package-card .bernarion-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bernarion-package-card .bernarion-gradient-bg {
    background: #8E5FEB;
    /* Egyszerű háttér, ha a gradient nem működik */
    /* A képen látható lila szín */
}

.bernarion-package-card .bernarion-btn:hover {
    opacity: 0.9;
}