/* Pricing: parent category sections (extracted from cennik.php inline) */
.pricing-section--parent {
    border: 2px solid var(--rc-color-accent, #d4a848);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    background: rgba(212, 168, 72, 0.03);
}
.pricing-category-heading--parent {
    border-bottom: 2px solid var(--rc-color-accent, #d4a848);
    padding-bottom: .75rem;
    margin-bottom: 1.25rem;
}
.pricing-subsection {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(212, 168, 72, 0.1);
}
.pricing-subsection:last-child {
    border-bottom: none;
}
.pricing-subsection-heading {
    color: var(--rc-color-accent, #d4a848);
    padding: .85rem .5rem;
    border-bottom: 1px solid rgba(212, 168, 72, 0.2);
    margin-bottom: 0;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .15s;
}
.pricing-subsection-heading:hover {
    background: rgba(212, 168, 72, 0.05);
}
.pricing-subsection-heading::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome';
    font-weight: 900;
    font-size: .85rem;
    transition: transform .2s;
    opacity: .6;
}
.pricing-subsection-heading.is-collapsed::after {
    transform: rotate(-90deg);
}
.pricing-subsection-body {
    overflow: hidden;
    transition: max-height .3s ease, opacity .25s ease;
    max-height: 0;
    opacity: 0;
}
.pricing-subsection-body.is-open {
    max-height: 6000px;
    opacity: 1;
}
.pricing-subsection-body > .pricing-grid {
    padding-top: .75rem;
    padding-bottom: 1rem;
}
