.bp-has-bonus-category-layout .site-main {
    padding: 0;
}

.bp-category-hero {
    background: #f1f5f9;
    padding: 48px 0 40px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.bp-category-hero__inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bp-category-hero__title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
    color: #0f172a;
}

.bp-category-breadcrumbs {
    font-size: 0.9rem;
    color: #64748b;
}

.bp-category-breadcrumbs a {
    color: #64748b;
}

.bp-category-breadcrumbs a:hover {
    color: #1d4ed8;
}

.bp-category-breadcrumbs .bp-breadcrumb__sep {
    color: #9ca3af;
}

.bp-category-breadcrumbs .bp-breadcrumb__current {
    color: #111827;
    font-weight: 600;
}

.bp-category-bonus {
    padding: 72px 0 96px;
    background: #ffffff;
}

.bp-bonus-filter {
    background: #ffffff;
    padding: 24px 0 12px;
    border-bottom: 1px solid #f1f5f9;
}

.bp-bonus-filter__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bp-bonus-filter__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid #e11d48;
    color: #e11d48;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bp-bonus-filter__pill:hover {
    background-color: rgba(225, 29, 72, 0.08);
    transform: translateY(-1px);
}

.bp-bonus-filter__pill.is-active {
    background-color: #e11d48;
    color: #ffffff;
}

.bp-category-bonus {
    padding: 72px 0 96px;
    background: #ffffff;
}

.bp-category-bonus__inner {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.bp-bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.bp-bonus-pagination {
    margin-top: 48px;
}

.bp-bonus-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.bp-bonus-pagination a,
.bp-bonus-pagination span {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 600;
}

.bp-bonus-pagination .current {
    background: #0f172a;
    color: #ffffff;
}

.bp-bonus-placeholder {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-bonus-placeholder__card {
    width: min(560px, 100%);
    padding: 48px 32px;
    border-radius: 32px;
    background: linear-gradient(140deg, #ffffff 0%, #f5f9ff 55%, #ffffff 100%);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.bp-bonus-placeholder__text {
    font-size: 1.35rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
    .bp-category-hero__inner,
    .bp-bonus-filter__inner,
    .bp-category-bonus__inner {
        width: calc(100% - 30px);
    }

    .bp-bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bp-category-hero {
        padding: 40px 0 32px;
    }

    .bp-category-hero__inner,
    .bp-bonus-filter__inner,
    .bp-category-bonus__inner {
        width: calc(100% - 24px);
    }

    .bp-bonus-grid {
        grid-template-columns: 1fr;
    }

    .bp-bonus-placeholder__card {
        padding: 40px 24px;
        border-radius: 24px;
    }
}


