.category-page__card{
    overflow: hidden;
}

.category-page__heading{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 16px;
    background: linear-gradient(90deg, #17a2b8, #1f7dd6);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.category-page__body{
    padding: 16px;
}

.category-page__table{
    margin: 0;
    border-collapse: collapse;
}

.category-page__table thead th{
    vertical-align: middle;
    text-align: center;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    white-space: nowrap;
}

.category-page__table tbody td{
    border: 1px solid #dee2e6;
    vertical-align: middle;
}

.category-page__table .product-link,
.category-page__mobile-item .product-link{
    color: inherit;
    text-decoration: none;
}

.category-page__table .product-link:hover,
.category-page__mobile-item .product-link:hover{
    color: inherit;
}

.category-page__table .avatar-sm,
.category-page__mobile-thumb{
    object-fit: cover;
    border-radius: 6px;
}

.category-page__table .avatar-sm{
    margin-right: .5rem;
}

.category-page__mobile-list{
    display: grid;
    gap: 12px;
}

.category-page__mobile-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
}

.category-page__mobile-item.is-disabled{
    color: #6c757d;
}

.category-page__mobile-thumb{
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
}

.category-page__mobile-main{
    min-width: 0;
    flex: 1 1 auto;
}

.category-page__mobile-name{
    display: block;
    margin-bottom: 6px;
    color: #111827;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.category-page__mobile-badges .badge{
    margin-right: 4px;
    margin-bottom: 4px;
}

.category-page__empty{
    padding: 40px 16px;
    text-align: center;
    color: #6b7280;
}

.category-page__buy-btn.disabled{
    pointer-events: none;
    cursor: not-allowed;
}

.category-page__table tbody tr:hover,
.category-page__mobile-item:hover{
    background-color: #f8fafc;
}

@media (max-width: 767.98px){
    .category-page__body{
        padding: 10px;
    }

    .category-page__heading{
        min-height: 46px;
        font-size: 16px;
        padding: 10px 12px;
    }
}
