/* 详情页特有样式 */
.food-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 美食主图区域 */
.food-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.food-hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.food-hero h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

/* 标签样式 */
.tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tags span {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* 美食描述区域 */
.food-description {
    margin-bottom: 3rem;
}

.food-description h2 {
    color: #e60012;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.food-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.process-image {
    width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
}

/* 制作步���区域 */
.food-recipe {
    margin-bottom: 3rem;
}

.food-recipe h2 {
    color: #e60012;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.recipe-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.step h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* 相关推荐区域 */
.related-foods {
    margin-top: 4rem;
}

.related-foods h2 {
    color: #e60012;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .food-detail {
        padding: 1rem;
    }

    .food-hero h1 {
        font-size: 2rem;
    }

    .recipe-steps {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 1rem;
    }
} 