* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #fef7f0;
    color: #1e1e1e;
    line-height: 1.5;
    padding-bottom: 70px;
}

:root {
    --primary: #C41E3A;
    --primary-dark: #9A1830;
    --primary-light: #E85D75;
    --dark: #2a2a2a;
    --light-bg: #fff8f0;
    --card-bg: #ffffff;
    --gray-mid: #7a6a5c;
    --border-radius: 24px;
    --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #ffe0cc;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.logo span {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.75rem;
    color: var(--gray-mid);
    font-weight: 400;
    margin-left: 0.3rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 70%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 99;
        gap: 1.2rem;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(0.97);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.2rem;
}

.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--primary);
    margin-top: 6px;
    border-radius: 4px;
}

.hero {
    background: linear-gradient(107deg, #fff4e8 0%, #ffe8da 100%);
    padding: 1.5rem 0;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.hero-text .highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: 1rem;
    color: #4a3b2f;
    margin-bottom: 1.5rem;
}

.hero-img {
    flex: 1;
    text-align: center;
}

.hero-img img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 350px;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.menu-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 1rem;
}

.menu-info h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.badge {
    background: #ffefe3;
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.menu-desc {
    color: var(--gray-mid);
    font-size: 0.85rem;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.shop-details {
    flex: 1;
}

.shop-details p {
    margin: 0.8rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.clickable {
    cursor: pointer;
    transition: 0.2s;
    padding: 4px 8px;
    border-radius: 20px;
    background: #f5ede5;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.clickable:hover {
    background: #ffe0cc;
}

.map-placeholder {
    flex: 1;
    background: #e9e2d9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #6b5a4b;
    min-height: 180px;
}

.bottom-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    border-top: 1px solid #ffe0cc;
}

.order-now-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.order-now-btn:hover {
    background: var(--primary-dark);
}

.hot-tip {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.footer {
    background: #1e1b18;
    color: #ddd2c6;
    padding: 2rem 1.2rem 1.5rem;
    margin-top: 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-section {
    flex: 1;
    min-width: 140px;
}

.footer-section h4 {
    font-family: 'Noto Serif SC', serif;
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: #f3ede8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1b18;
    font-size: 10px;
    text-align: center;
    margin-bottom: 6px;
    overflow: hidden;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-icons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.platform-link {
    background: #2e2a27;
    padding: 6px 12px;
    border-radius: 40px;
    text-decoration: none;
    color: #ffc9a9;
    font-weight: 500;
    font-size: 0.85rem;
    transition: 0.2s;
}

.platform-link:hover {
    background: var(--primary);
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.7rem;
    border-top: 1px solid #3a322c;
    padding-top: 1rem;
}

@media (max-width: 600px) {
    body {
        padding-bottom: 65px;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .container {
        padding: 1.5rem 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .bottom-order-bar {
        padding: 0.6rem 1rem;
    }
    .order-now-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    .hot-tip {
        font-size: 0.7rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    .news-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========== 文章/动态 ========== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.news-loading {
    text-align: center;
    color: var(--gray-mid);
    padding: 2rem;
    font-size: 0.9rem;
}

.news-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.news-cover {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-cover img {
    transform: scale(1.05);
}

.news-cover-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff4e8, #ffe8da);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.news-body {
    padding: 1rem 1.2rem 1.2rem;
}

.news-category {
    background: #ffefe3;
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.news-body h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-summary {
    color: var(--gray-mid);
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.news-date {
    font-size: 0.75rem;
    color: #b0a090;
}

/* 查看更多链接 */
.news-more-link {
    grid-column: 1 / -1;
    display: block;
    text-align: center;
    padding: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    border-radius: var(--border-radius);
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5rem;
}
.news-more-link:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* 平板：2列 */
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 手机：1列 */
@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 文章列表页 ========== */
.articles-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.2rem;
}

.articles-page-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.articles-page-desc {
    color: var(--gray-mid);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.article-list-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.04);
}

.article-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-list-cover {
    width: 260px;
    min-height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.article-list-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-list-item:hover .article-list-cover img {
    transform: scale(1.05);
}

.article-list-cover-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(135deg, #fff4e8, #ffe8da);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-list-body {
    padding: 1.4rem 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

/* 标签丸 */
.article-list-tags {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.article-tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 20px;
    background: #e8f0fe;
    color: #1a73e8;
    font-weight: 500;
}

.article-tag:nth-child(2n) {
    background: #fef3e8;
    color: #e65100;
}

.article-list-body h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-list-body .news-summary {
    flex: 1;
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 底部元信息栏 */
.article-list-meta {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    font-size: 0.8rem;
    color: #999;
    padding-top: 0.6rem;
    border-top: 1px solid #f0f0f0;
}

.article-list-meta span {
    white-space: nowrap;
}

/* ========== 文章详情页 ========== */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.2rem;
}

.article-detail-header {
    margin-bottom: 2rem;
}

.article-detail-header .news-category {
    margin-bottom: 0.8rem;
}

.article-detail-header h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.article-detail-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.85rem;
    color: #b0a090;
}

.article-detail-cover {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.article-detail-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.article-detail-content p {
    margin-bottom: 1rem;
}

.article-detail-content b,
.article-detail-content strong {
    color: var(--dark);
}

.article-detail-content ul,
.article-detail-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-detail-content li {
    margin-bottom: 0.5rem;
}

.article-detail-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1rem 0;
}

.article-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.article-detail-back:hover {
    text-decoration: underline;
}

/* ========== 下单页备注输入框 ========== */
textarea#remark {
    width: 100%;
    min-height: 80px;
    padding: 12px 14px;
    border: 1.5px solid #e0d4c8;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #faf8f6;
    color: #333;
    resize: vertical;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

textarea#remark:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

textarea#remark::placeholder {
    color: #a09080;
}

@media (max-width: 768px) {
    .article-list-item {
        flex-direction: column;
    }
    .article-list-cover {
        width: 100%;
        min-height: 180px;
        height: 180px;
    }
    .article-detail-header h1 {
        font-size: 1.5rem;
    }
}