.categories-container {
    padding: 20px 0;
    min-height: 400px;
}

/* 顶部快速导航样式 */
.jump-nav {
    margin-bottom: 50px;
    padding: 10px 0;
}

.jump-nav a {
    color: #c00;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    line-height: 2;
}

.jump-nav a:hover {
    text-decoration: underline;
}

.jump-sep {
    color: #ccc;
    margin: 0 10px;
    font-size: 12px;
}

/* 分类板块样式 */
.category-section {
    margin-bottom: 60px;
}

.category-header {
    border-bottom: 2px solid #c00;
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.category-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

.category-header h2 a {
    color: inherit;
    text-decoration: none;
}

.category-header h2 a:hover {
    color: #c00;
}

/* 标签样式 - 1:1 匹配图片 */
.genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 15px;
}

.genre-item {
    display: inline-block;
    padding: 8px 22px;
    background: #f2f2f2;
    color: #c00;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
}

.genre-item:hover {
    background: #c00;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(204, 0, 0, 0.2);
}

/* 规格标签图标样式 */
.spec-item {
    display: flex;
    align-items: center;
    padding: 6px 18px; /* Slightly adjust padding for icons */
}

.spec-icon {
    height: 18px; /* Fixed height for consistency */
    width: auto;
    margin-right: 8px;
    object-fit: contain;
}

.loading, .error, .empty {
    text-align: center;
    padding: 100px 0;
    color: #999;
    font-size: 16px;
}
