.bookprice-catalog {
    width: 100%;
    color: #101828;
    font-family: inherit;
}

.bookprice-catalog,
.bookprice-catalog * {
    font-family: inherit;
}

.bookprice-catalog__categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.bookprice-catalog__category-card {
    min-width: 0;
}

.bookprice-catalog__category-link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 132px;
    padding: 22px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    color: #101828;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bookprice-catalog__category-link:hover {
    transform: translateY(-2px);
    border-color: #c7d2fe;
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.bookprice-catalog__category-link--disabled {
    cursor: default;
}

.bookprice-catalog__category-link--disabled:hover {
    transform: none;
    border-color: #e5e7eb;
    box-shadow: none;
}

.bookprice-catalog__category-name {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.bookprice-catalog__category-count {
    color: #475467;
    font-size: 16px;
    line-height: 1.4;
}

.bookprice-catalog__section + .bookprice-catalog__section {
    margin-top: 28px;
}

.bookprice-catalog__section-title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.25;
}

.bookprice-catalog__summary {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.45;
    color: #101828;
}

.bookprice-catalog__toolbar {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 16px;
}

.bookprice-catalog__sort {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.bookprice-catalog__sort-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: min(320px, 100%);
}

.bookprice-catalog__sort-field span {
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.bookprice-catalog__sort-field select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #101828;
}

.bookprice-catalog__books {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.bookprice-catalog__books .bp-book-card {
    height: 100%;
}

.bookprice-catalog__filters {
    margin: 0 0 24px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
}

.bookprice-catalog__filters-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.bookprice-catalog__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bookprice-catalog__field span {
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.bookprice-catalog__field input,
.bookprice-catalog__field select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #101828;
}

.bookprice-catalog__filters-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.bookprice-catalog__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid #2355bd;
    border-radius: 10px;
    background: #2355bd;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.bookprice-catalog__button--secondary {
    background: #fff;
    color: #2355bd;
}

.bookprice-catalog__backlink {
    margin-bottom: 20px;
}

.bookprice-catalog__backlink a {
    color: #2355bd;
    text-decoration: none;
    font-weight: 600;
}

.bookprice-catalog__notice {
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    color: #475467;
}

.bookprice-catalog__notice--warning {
    border-color: #f5c26b;
    background: #fff9ef;
    color: #8a5a00;
}

.bookprice-catalog__pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.bookprice-catalog__pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #2355bd;
    text-decoration: none;
    font-weight: 600;
}

.bookprice-catalog__pagination-link--nav {
    min-width: 0;
    padding-inline: 14px;
}

.bookprice-catalog__pagination-link--current {
    border-color: #2355bd;
    background: #2355bd;
    color: #fff;
}

.bookprice-catalog__pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    color: #667085;
    font-weight: 700;
}

@media (max-width: 767px) {
    .bookprice-catalog__categories {
        grid-template-columns: 1fr;
    }

    .bookprice-catalog__toolbar {
        justify-content: stretch;
    }

    .bookprice-catalog__sort {
        justify-content: stretch;
    }

    .bookprice-catalog__books {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bookprice-catalog__filters-grid {
        grid-template-columns: 1fr;
    }

    .bookprice-catalog__category-link {
        min-height: auto;
        padding: 18px;
    }

    .bookprice-catalog__category-name {
        font-size: 20px;
    }
}
