/* 页面标题 */
.page-header {
    margin-top: 80px;
    background: linear-gradient(to right, #ff6b81, #ff4757);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* 分类导航 */
.category-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.category-menu {
    display: flex;
    list-style: none;
    padding: 20px 0;
}

.category-menu li {
    margin-right: 30px;
}

.category-menu a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
}

.category-menu a:hover,
.category-menu a.active {
    color: #ff6b81;
}

.category-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b81;
}

/* 筛选区域 */
.filter-section {
    background: #f8f9fa;
    padding: 20px 0;
    margin-bottom: 30px;
}

.filter-section .container {
    display: flex;
    gap: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-group label {
    margin-right: 10px;
    color: #666;
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    outline: none;
}

/* 产品网格 */
.products-grid .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
}

.price {
    color: #ff6b81;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-view {
    display: inline-block;
    padding: 8px 20px;
    background: #ff6b81;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-view:hover {
    background: #ff4757;
}

/* 分页 */
.pagination {
    text-align: center;
    margin: 50px 0;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background: #ff6b81;
    color: #fff;
    border-color: #ff6b81;
} 