/* IPTVIreland — Plans / Pricing Cards */
.iptvb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.iptvb-card {
    background: var(--card-bg, #12121e);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    transition: border-color .2s, transform .2s;
}
.iptvb-card:hover {
    border-color: rgba(0,212,255,.4);
    transform: translateY(-2px);
}
.iptvb-card.iptvb-featured {
    border-color: rgba(0,212,255,.5);
    background: linear-gradient(145deg, rgba(0,212,255,.07), rgba(123,47,247,.07));
}
.iptvb-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: .04em;
}
.iptvb-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, #e0e0ff);
    margin-bottom: 12px;
}
.iptvb-price {
    font-size: 2rem;
    font-weight: 900;
    color: #00d4ff;
    line-height: 1;
    margin-bottom: 4px;
}
.iptvb-dur {
    font-size: .85rem;
    font-weight: 400;
    color: var(--gray-muted, #8888aa);
}
.iptvb-features {
    list-style: none;
    margin: 16px 0 20px;
    padding: 0;
}
.iptvb-features li {
    font-size: .83rem;
    color: var(--gray-text, #c0c0d8);
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.iptvb-features li::before {
    content: "✓ ";
    color: #00d4ff;
    font-weight: 700;
}
