.filter-bar-inner {
    display: flex;
    gap: 2px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex-shrink: 0;
    padding: 0.65rem 1.8rem;
    margin-right: 0.75em;
    border: 1px solid var(--pas-border);
    background: transparent;
    color: var(--pas-text);
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    border-radius: 175px;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
    white-space: nowrap;
}
.filter-btn.active,
.filter-btn:hover {
    background: var(--pas-red);
    border-color: var(--pas-red);
    color: #fff;
}
.filter-btn > svg {
    color: var(--pas-text);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pkg-card {
    background: var(--pas-surface);
    border: 1px solid var(--pas-border);
    border-radius: 2px;
    padding: 36px 30px 30px;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.25s,
        transform 0.25s;
}
.pkg-card:hover {
    border-color: rgba(208, 2, 27, 0.4);
    background-color: rgba(208, 2, 27, 0.1);
    transform: translateY(-3px);
}

/* Featured badge */
.pkg-card.featured {
    border-color: var(--pas-red);
    position: relative;
}
.pkg-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--pas-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    font-family: var(--font-body);
}

/* Package header */
.pkg-title {
    font-size: 2.75rem;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 2px;
}
.pkg-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pas-text3);
    margin-bottom: 24px;
}

/* Price row */
.pkg-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
.pkg-from {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pas-text3);
}
.pkg-price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--pas-red);
}
.pkg-duration {
    font-size: 0.78rem;
    color: var(--pas-text3);
    margin-left: auto;
}

.pkg-divider {
    height: 1px;
    background: var(--pas-border);
    margin: 20px 0;
}

/* Feature list */
.pkg-features {
    flex: 1;
    margin-bottom: 24px;
}
.pkg-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--pas-text2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pkg-feature:last-child {
    border-bottom: none;
}
.pkg-feature svg {
    color: var(--pas-red);
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Inspection note */
.pkg-note {
    font-size: 0.75rem;
    color: var(--pas-text);
    font-style: italic;
    margin-bottom: 16px;
    text-align: center;
}

/* Book CTA button */
.pkg-cta {
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    border: 1px solid var(--pas-border);
    border-radius: 175px;
    color: var(--pas-text);
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
}
.pkg-cta:hover,
.pkg-card.featured .pkg-cta {
    background: var(--pas-red);
    border-color: var(--pas-red);
    color: #fff;
}
.pkg-card.featured .pkg-cta:hover {
    background: var(--pas-red-hov);
    border-color: var(--pas-red-hov);
}

.detail-card {
    background: var(--pas-surface);
    border: 1px solid var(--pas-border);
    border-radius: 2px;
    padding: 40px 36px;
    transition:
        border-color 0.25s,
        transform 0.25s;
}
.detail-card:hover {
    border-color: rgba(208, 2, 27, 0.4);
    transform: translateY(-3px);
}
.detail-card.featured {
    border-color: var(--pas-red);
    position: relative;
}
.detail-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--pas-red);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
    font-family: "DM Sans", sans-serif;
}

/* Header row — title left, price right */
.detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.detail-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.detail-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pas-text3);
}
.detail-price-group {
    text-align: right;
}
.detail-from {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pas-text3);
}
.detail-price {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--pas-text);
}
.detail-duration {
    font-size: 0.76rem;
    color: var(--pas-text3);
}

.detail-divider {
    height: 1px;
    background: var(--pas-border);
    margin: 20px 0;
}

/* Two-column feature grid */
.detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4px 16px;
    margin-bottom: 28px;
}
.detail-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.88rem;
    color: var(--pas-text2);
}
.detail-feature svg {
    color: var(--pas-red);
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.detail-cta {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 1px solid var(--pas-border);
    border-radius: 175px;
    color: var(--pas-text);
    font-family: "DM Sans", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
}
.detail-cta:hover,
.detail-card.featured .detail-cta {
    background: var(--pas-red);
    border-color: var(--pas-red);
    color: #fff;
}
.detail-card.featured .detail-cta:hover {
    background: var(--pas-red-hov);
    border-color: var(--pas-red-hov);
}

@media (max-width: 575px) {
    .detail-header {
        flex-direction: column;
    }
    .detail-price-group {
        text-align: left;
    }
    .detail-features {
        grid-template-columns: 1fr;
    }
}

.addons-table {
    width: 100%;
    border-collapse: collapse;
}
.addons-table thead th {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pas-text3);
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    padding: 10px 16px;
    border-bottom: 1px solid var(--pas-border);
    text-align: left;
}
.addons-table tbody tr {
    border-bottom: 1px solid var(--pas-border);
    transition: background 0.2s;
}
.addons-table tbody tr:last-child {
    border-bottom: none;
}
.addons-table tbody tr:hover {
    border-color: rgba(208, 2, 27, 0.4);
    background-color: rgba(208, 2, 27, 0.1);
}
.addons-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--pas-text2);
    vertical-align: middle;
}
.addons-table td:first-child {
    color: var(--pas-text);
    font-weight: 500;
}
.addons-table td:last-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pas-text);
    white-space: nowrap;
}

/* Small icon badge in first column */
.addon-icon {
    width: 34px;
    height: 34px;
    border: 1px solid var(--pas-border);
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pas-red);
    font-size: 0.85rem;
    margin-right: 10px;
    vertical-align: middle;
}
.addon-icon > svg {
    color: var(--pas-text);
}

.services-section {
    display: none;
}
.services-section.active {
    display: block;
}

/* Membership cards */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 48px;
}
.mem-card {
    background: var(--pas-surface);
    border: 1px solid var(--pas-border);
    border-radius: 2px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition:
        border-color 0.25s,
        transform 0.25s;
}
.mem-card:hover {
    transform: translateY(-3px);
    border-color: rgba(208, 2, 27, 0.4);
    background-color: rgba(208, 2, 27, 0.1);
}
.mem-card.featured-mem {
    border-color: var(--pas-red);
    position: relative;
}
.mem-card.featured-mem::before {
    content: "Best Value";
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--pas-red);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 12px;
}
.mem-tier {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pas-text3);
    margin-bottom: 6px;
    text-align: center;
}
.mem-name {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--pas-text);
    text-align: center;
}
.mem-price {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--pas-red);
    text-align: center;
}
.mem-price-per {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--pas-text3);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    text-align: center;
}
.mem-divider {
    height: 1px;
    background: var(--pas-border);
    margin-bottom: 20px;
}
.mem-perks {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.mem-perk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--pas-text2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mem-perk:last-child {
    border-bottom: none;
}
.mem-check {
    color: var(--pas-red);
    flex-shrink: 0;
}
.mem-cta {
    width: 100%;
    padding: 0.85rem 1rem;
    background: transparent;
    border: 1px solid var(--pas-border);
    border-radius: 175px;
    color: var(--pas-text);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
}
.mem-cta:hover,
.mem-card.featured-mem .mem-cta {
    background: var(--pas-red);
    border-color: var(--pas-red);
    color: #fff;
}
.mem-card.featured-mem .mem-cta:hover {
    background: var(--pas-red-hov);
    border-color: var(--pas-red-hov);
}
