/* 产品展示页面样式 */

/* 产品展示标题 */
.product-header {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.product-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 40px;
}

/* 产品推荐 */
.product-recommendation {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.recommendation-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.recommendation-item {
    text-align: center;
}

.recommendation-item img {
    width: 200px;
    height: auto;
}

/* 产品分类 */
.product-category {
    padding: 80px 0;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* 产品列表 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.product-item {
    text-align: center;
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 产品详情展示 */
.product-detail {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.detail-image {
    flex: 1;
}

.detail-image img {
    width: 100%;
    height: auto;
}

.detail-info {
    flex: 1;
    background-color: #f5f5f5;
    padding: 60px;
}

.detail-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.more-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-top: 30px;
}

.more-btn:hover {
    background-color: gold;
    color: #000;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 36px;
    }
    
    .product-subtitle {
        font-size: 18px;
    }
    
    .recommendation-grid {
        gap: 30px;
    }
    
    .recommendation-item img {
        width: 150px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .product-detail {
        flex-direction: column;
        gap: 40px;
    }
    
    .detail-info {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 28px;
    }
    
    .product-subtitle {
        font-size: 16px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 28px;
    }
    
    .detail-title {
        font-size: 24px;
    }
}