/* 地方特产页面样式 */
main {
    margin-top: 60px;
}

.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.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: 3rem;
    margin-bottom: 1rem;
}

section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

h2 {
    color: #DE2910;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.category-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.category-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    color: #DE2910;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.origin-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFD700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.process-view {
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.process-view img {
    height: 150px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #DE2910;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.production-area {
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.production-area img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.seasonal-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.seasonal-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.seasonal-info {
    padding: 1.5rem;
    flex: 1;
}

.seasonal-info h3 {
    color: #DE2910;
    margin-bottom: 0.5rem;
}

.season-tag {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .category-grid,
    .product-showcase {
        grid-template-columns: 1fr;
    }

    .seasonal-item {
        flex-direction: column;
    }

    .seasonal-item img {
        width: 100%;
        height: 200px;
    }
} 