/* 家乡特产页面样式 */
.hometown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 头部横幅 */
.hero {
    position: relative;
    height: 400px;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 8px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* 分类筛选 */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #1e88e5;
    color: #fff;
}

/* 产品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e88e5;
    margin-bottom: 1rem;
}

/* 文化介绍部分 */
.culture-intro {
    padding: 3rem 0;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.culture-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.culture-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.culture-image {
    flex: 1;
    height: 300px;
}

.culture-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.culture-text {
    flex: 1;
}

.culture-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .culture-content {
        flex-direction: column;
    }

    .culture-image,
    .culture-text {
        width: 100%;
    }

    .category-filters {
        flex-wrap: wrap;
    }
} 