.product-category-list {
    max-width: 1200px;
    margin: 0 auto;
}
.product-category-image {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    width: 250px;
    height: 250px;
}
.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 4px;
}
.product-category-description {
    overflow: hidden;
}
.product-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9375rem;
}
.product-list-table th,
.product-list-table td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}
.product-list-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}
.product-list-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
.product-list-table tr:hover {
    background-color: #f1f1f1;
}
.product-list-table td a {
    color: #0091dc;
    text-decoration: none;
}
.product-list-table td a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .product-list-table,
    .product-list-table thead,
    .product-list-table tbody,
    .product-list-table th,
    .product-list-table td,
    .product-list-table tr {
        display: block;
    }
    .product-list-table thead {
        display: none;
    }
    .product-list-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        padding: 10px;
    }
    .product-list-table td {
        border: none;
        padding: 6px 0;
        position: relative;
        padding-left: 50%;
        text-align: left;
    }
    .product-list-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        white-space: nowrap;
    }
}
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}
.tabs-nav .tab {
    padding: 8px 16px;
    cursor: pointer;
    background: #f5f5f5;
    margin-right: 4px;
    border: 1px solid #ccc;
    border-bottom: none;
}
.tabs-nav .tab.active {
    background: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}
.tab-pane {
    display: none;
    padding: 16px;
    border: 1px solid #ccc;
    border-top: none;
}
.tab-pane.active {
    display: block;
}
.articles-list {
    margin: 0;
    padding-left: 20px;
}
.no-articles {
    margin: 0;
    color: #666;
}