/* Brand színek:
   - Highlight (brand sárga): #f7ce46
   - Fő szöveg (brand fekete): #1b1b1b
   - Másodlagos szöveg: #4a4a4a
   - Keret: #e6e6e6
*/

/* Külső wrapper */
.wcpt-wrapper {
    display: grid;
    gap: 24px;
    margin: 2rem 0;
    font-family: Inter, Roboto, Segoe UI, sans-serif;
}

@media (min-width: 768px) {
    .wcpt-wrapper {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.wcpt-heading {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1b1b1b;
    margin: 0 0 0.5rem;
    text-align: center;
}

/* Kártyák */
.wcpt-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wcpt-card--featured {
    border: 2px solid #f7ce46;
    box-shadow: 0 24px 48px rgba(247,206,70,.3);
}

.wcpt-header {
    margin-bottom: 1rem;
}

/* Badge a kiemelt csomagon */
.wcpt-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f7ce46;
    color: #1b1b1b;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    line-height: 1.2;
    box-shadow: 0 12px 24px rgba(247,206,70,.6);
    border: 1px solid rgba(0,0,0,.08);
}

/* Csomag cím + alcím */
.wcpt-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1b1b1b;
    margin: 0 0 .25rem;
}

.wcpt-subtitle {
    font-size: .9rem;
    line-height: 1.4;
    color: #4a4a4a;
    font-weight: 500;
    margin: 0;
}

/* Ár blokk */
.wcpt-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1b1b1b;
    margin: 1rem 0 .5rem;
}
.wcpt-price span {
    display: inline-block;
    font-size: .9rem;
    font-weight: 500;
    color: #4a4a4a;
    margin-left: .25rem;
}

/* Feature lista */
.wcpt-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.wcpt-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: .9rem;
    line-height: 1.4;
    color: #1b1b1b;
    font-weight: 500;
    margin-bottom: .5rem;
}
.wcpt-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f7ce46; /* sárga pötty */
    position: absolute;
    left: 0;
    top: .3rem;
    box-shadow: 0 0 0 2px rgba(247,206,70,.35);
    border: 1px solid rgba(0,0,0,.08);
}

/* CTA gomb – szögletes, Webgrow sárga */
.wcpt-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #f7ce46;
    color: #1b1b1b;
    border-radius: 0; /* <- kért módosítás: nincs lekerekítés */
    padding: .75rem 1rem;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    border: 0;
    box-shadow: 0 12px 24px rgba(247,206,70,.5);
    transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
}
.wcpt-cta:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(247,206,70,.6);
}

.wcpt-card--featured .wcpt-cta {
    box-shadow: 0 16px 32px rgba(247,206,70,.6);
}

/* Lábjegyzet */
.wcpt-footer-note {
    text-align: center;
    font-size: .8rem;
    line-height: 1.4;
    color: #4a4a4a;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cím + ikon vízszintesen, középre igazítva */
.wgc-pricing-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}

/* Az SVG örökli a színt (currentColor). Méretezés: */
.wgc-pricing-title .wgc-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #1b1b1b; /* alap: fekete */
}

/* Ha van "kiemelt" kártyád (pl. Pro), adj neki sárga ikont: */
.wgc-pricing-card--featured .wgc-icon svg {
  color: #f7ce46;
}

/* Cím szöveg */
.wgc-pricing-title .wgc-title-text {
  font-weight: 700;
  font-size: 1.125rem; /* igazítsd a meglévő heading méretre */
  color: #1b1b1b;
}
/* Ikon fix 24×24 – bármilyen reset fölé kényszerítjük */
.wcpt-wrapper .wcpt-title .wgc-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.wcpt-wrapper .wcpt-title .wgc-icon svg {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  flex: 0 0 28px;
}

