.category-bonus-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-image: url('../bg_breadcrumbs.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    margin-bottom: 0;
}

.category-bonus-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.category-bonus-hero__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 12%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.category-bonus-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.2;
}

.category-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #ffffff;
}

.category-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.category-breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumb__sep {
    opacity: 0.7;
}

.breadcrumb__current {
    opacity: 1;
    font-weight: 600;
}

.category-bonus-filter {
    background: #ffffff;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.category-bonus-filter__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 12%;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.category-bonus-filter__label {
    font-size: 14px;
    font-weight: 600;
    color: #0b1324;
    font-family: 'Poppins', Arial, sans-serif;
}

.category-bonus-filter__pills {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-bonus-filter__pill {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #0b1324;
    text-decoration: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', Arial, sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.category-bonus-filter__pill:hover {
    background: #e2e8f0;
    color: #0b1324;
}

.category-bonus-filter__pill.is-active {
    background: #43b02a;
    color: #ffffff;
}

.category-bonus-filter__pill.is-active:hover {
    background: #3aa326;
    color: #ffffff;
}

.category-bonus-content {
    padding: 60px 0 80px;
    background: #f1f5f9;
}

.category-bonus-content__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 12%;
    box-sizing: border-box;
}

.category-bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.category-bonus-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.category-bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-bonus-card__image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.category-bonus-card__image:hover {
    opacity: 0.9;
}

.category-bonus-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-bonus-card__body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.category-bonus-card__code {
    display: inline-block;
    padding: 6px 12px;
    background: transparent;
    color: #43b02a;
    border: 2px dashed #43b02a;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    margin-bottom: 12px;
    align-self: flex-start;
}

.category-bonus-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.3;
}

.category-bonus-card__title a {
    color: #0b1324;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-bonus-card__title a:hover {
    color: #43b02a;
}

.category-bonus-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 20px;
    font-family: 'Poppins', Arial, sans-serif;
    flex: 1 1 auto;
}

.category-bonus-card__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-bonus-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #43b02a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Poppins', Arial, sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
}

.category-bonus-card__button:hover {
    background: #3aa326;
    color: #ffffff;
}

.category-bonus-card__read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    color: #6b7280;
    text-decoration: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Poppins', Arial, sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-align: center;
}

.category-bonus-card__read-more:hover {
    background: #f9fafb;
    color: #0b1324;
    border-color: #9ca3af;
}

.category-bonus-pagination {
    margin-top: 48px;
    text-align: center;
}

.category-bonus-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-bonus-pagination .page-numbers li {
    display: inline-block;
}

.category-bonus-pagination .page-numbers a,
.category-bonus-pagination .page-numbers span {
    display: inline-block;
    padding: 10px 16px;
    background: #ffffff;
    color: #0b1324;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', Arial, sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.category-bonus-pagination .page-numbers a:hover {
    background: #43b02a;
    color: #ffffff;
}

.category-bonus-pagination .page-numbers .current {
    background: #43b02a;
    color: #ffffff;
}

.category-bonus-empty {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
}

.category-bonus-empty p {
    font-size: 16px;
    color: #6b7280;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
}

.category-bonus-description {
    padding: 60px 0;
    background: #ffffff;
}

.category-bonus-description__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 12%;
    box-sizing: border-box;
}

.category-bonus-description__short,
.category-bonus-description__full {
    font-size: 15px;
    line-height: 1.7;
    color: #0b1324;
    margin: 0 0 12px;
    font-family: 'Poppins', Arial, sans-serif;
}

.category-bonus-description__toggle {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', Arial, sans-serif;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.category-bonus-description__toggle::before {
    content: '↓';
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.category-bonus-description__toggle.is-expanded::before {
    content: '↑';
}

.category-bonus-description__toggle:hover {
    color: #1d4ed8;
}

@media (max-width: 1300px) {
    .category-bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .category-bonus-hero {
        padding: 60px 0;
    }
    .category-bonus-hero__inner,
    .category-bonus-filter__inner,
    .category-bonus-content__inner,
    .category-bonus-description__inner {
        padding-left: 7%;
        padding-right: 7%;
    }
    .category-bonus-hero__title {
        font-size: 36px;
    }
    .category-bonus-content {
        padding: 40px 0 60px;
    }
    .category-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .category-bonus-description {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .category-bonus-hero {
        padding: 40px 0;
    }
    .category-bonus-hero__inner,
    .category-bonus-filter__inner,
    .category-bonus-content__inner,
    .category-bonus-description__inner {
        padding-left: 5%;
        padding-right: 5%;
    }
    .category-bonus-hero__title {
        font-size: 28px;
    }
    .category-bonus-filter__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .category-bonus-filter__pills {
        width: 100%;
    }
    .category-bonus-content {
        padding: 30px 0 40px;
    }
    .category-bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-bonus-description {
        padding: 30px 0;
    }
}

