/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fefefe;
}
.pageData {
    margin-bottom: 25px;
    padding: 0px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background-color: rgb(254, 254, 254);
    font-size: 1.1rem;
    color: rgb(90, 108, 125);
    line-height: 1.8;
}

/* 导航栏样式 - 中式餐饮风格 */
.navbar {
    background: url('../images/top_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar.scrolled {
    background: url('../images/top_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 2px 30px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 80px;
    position: relative;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    z-index: -1;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #f4d03f;
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #f4d03f;
}

/* 主要内容区域 */
.main-content {
    margin-top: 80px;
}

/* Banner横幅轮播样式 */
.banner-section {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* 轮播指示器 */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4af37;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* 轮播控制按钮 */
.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 5px;
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* 页面容器 */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 页面标题 */
.page-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px;
    background: linear-gradient(135deg, #2c3e50, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    font-weight: 300;
}

/* 首页横幅 - 参考图片风格 */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-text {
    z-index: 2;
}

/* 英雄区域徽章 */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* 特色标签 */
.hero-features {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background: #d4af37;
    color: white;
}

/* 按钮组 */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.cta-button-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* 图片装饰 */
.image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

.decoration-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-dot:nth-child(3) {
    animation-delay: 1s;
}

/* 浮动图标 */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* 脉冲动画 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* 图片预览模态框 */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #d4af37;
    transform: scale(1.1);
}

.image-info {
    margin-top: 20px;
    text-align: center;
    color: white;
}

.image-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.image-counter {
    font-size: 1rem;
    color: #ccc;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2001;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* 产品图片点击效果 */
.product-image {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* 手机端适配 */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .modal-content img {
        max-height: 60vh;
    }
    
    .close-btn {
        top: -30px;
        font-size: 30px;
    }
    
    .nav-btn {
        font-size: 20px;
        padding: 12px 16px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .image-info h3 {
        font-size: 1.2rem;
    }
    
    .image-counter {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-text .description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInRight 1s ease 1s forwards;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    position: relative;
}

.hero-image-placeholder::before {
    content: '☕';
    font-size: 4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

/* 装饰性元素 */
.decorative-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

/* 卡片样式 */
.card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* 网格布局 */
.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: white;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: white;
}

/* 表单样式 */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* 页脚样式 */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #dc2626;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInRight {
    from {
        right: -100%;
        opacity: 0;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.2);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
        right: 0;
        animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-menu li {
        margin: 8px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding-bottom: 8px;
        opacity: 0;
        transform: translateX(20px);
        animation: fadeInRight 0.3s ease forwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.35s; }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        width: 100%;
        color: white;
        font-weight: 500;
    }

    .nav-menu a:hover {
        color: #f4d03f;
        transform: translateX(5px);
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }

    /* 遮罩层 */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-menu.active::before {
        opacity: 1;
    }

    .banner-section {
        height: 40vh;
        min-height: 300px;
    }

    .banner-prev,
    .banner-next {
        font-size: 20px;
        padding: 12px 16px;
    }

    .banner-prev {
        left: 10px;
    }

    .banner-next {
        right: 10px;
    }

    .banner-indicators {
        bottom: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .product-card img {
        height: 180px;
    }

    .brand-text p {
        font-size: 1rem;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .feature-item.reverse {
        direction: ltr;
    }

    .feature-image img {
    }

    .promise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promise-image img {
        height: 250px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 20px;
    }

    .hero-features {
        justify-content: center;
        margin: 20px 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button, .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }

    .floating-icons {
        display: none;
    }

    .image-decoration {
        display: none;
    }

    /* 品牌介绍页面手机端优化 */
    .brand-story-section {
        padding: 20px 0;
    }

    .brand-story-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 0 20px;
    }

    .brand-story-text {
        width: 100% !important;
        display: block !important;
    }

    .brand-story-image {
        width: 100% !important;
        display: block !important;
    }

    .brand-story-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .brand-story-text p {
        font-size: 1rem;
        text-align: center;
    }

    .brand-story-image img {
        height: 200px;
    }

    /* 关于我们页面手机端优化 */
    .page-container {
        padding: 10px 20px !important;
    }

    .page-container .grid.grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-container h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .page-container p {
        font-size: 1rem;
        text-align: center;
    }

    /* 新闻页面分类按钮手机端优化 */
    .news-filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .news-filter-buttons .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-width: auto;
        flex: 1;
        max-width: 120px;
    }

    /* 联系我们页面手机端优化 */
    .contact-info .page-container {
        padding: 0 20px !important;
    }

    .contact-info .grid.grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-info .card {
        padding: 20px;
    }

    /* 门店信息手机端优化 */
    .store-info .page-container {
        padding: 0 20px !important;
    }

    .store-info .grid.grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .store-info .card {
        padding: 20px;
    }

    .store-info .card h3 {
        font-size: 1.2rem;
    }

    .store-info .card p {
        font-size: 0.9rem;
    }
}

/* 品牌介绍区域 */
.brand-intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.brand-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.brand-intro-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}

.brand-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.brand-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
    text-align: left;
}

.brand-text p:last-child {
    margin-bottom: 0;
}

/* 最新菜品展示区域 */
.products-section {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #d4af37;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 20px 20px 15px;
    color: #2c3e50;
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
}

/* 品牌介绍页面样式 */
.brand-story-section {
    padding: 40px 0;
    background: white;
}

.brand-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.brand-story-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.brand-story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.brand-story-text p:last-child {
    margin-bottom: 0;
}

.brand-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.brand-values-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
}

.brand-features-section {
    padding: 80px 0;
    background: white;
}

.features-content {
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse .feature-text {
    direction: ltr;
}

.feature-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.brand-promise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.promise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.promise-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.promise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.promise-list {
    margin-top: 30px;
}

.promise-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #2c3e50;
}

.check-icon {
    width: 25px;
    height: 25px;
    background: #d4af37;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.promise-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 0 20px;
    }

    .page-container {
        padding: 0 20px;
    }

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }

    /* 品牌特色手机端布局 */
    .feature-item {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-bottom: 50px !important;
    }

    .feature-item.reverse {
        direction: ltr !important;
    }

    .feature-image img {
    }

    .feature-text {
        text-align: center;
    }

    .feature-text h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .feature-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* 品牌承诺手机端布局 */
    .promise-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .promise-image img {
        height: 250px !important;
    }

    .promise-text {
        text-align: center;
    }

    .promise-text h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .promise-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .promise-list {
        justify-content: center;
    }

    .promise-item {
        font-size: 0.9rem;
    }

    /* 新闻详情页手机端优化 */
    .news-detail h1 {
        font-size: 1.8rem !important;
    }

    .news-detail .article-meta {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .news-detail .share-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .news-detail .share-buttons button {
        width: 100% !important;
    }

    /* 新闻详情页手机端优化 */
    .news-detail-article {
        max-width: 100% !important;
        padding: 0 20px !important;
    }

    .news-detail-article img {
        max-width: 100% !important;
        height: 250px !important;
    }

    .news-detail-article h1 {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
    }

    .news-detail-article h2 {
        font-size: 1.4rem !important;
    }

    .news-detail-article .article-meta {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }

    .news-detail-article .share-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .news-detail-article .share-buttons button {
        width: 100% !important;
    }
}

/* 品牌优势样式 */
.brand-advantages-section .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.brand-advantages-section .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f39c12, #e74c3c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-advantages-section .advantage-card:hover::before {
    opacity: 1;
}

.brand-advantages-section .advantage-icon {
    transition: transform 0.3s ease;
}

.brand-advantages-section .advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .brand-advantages-section .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .brand-advantages-section .advantage-card {
        padding: 30px !important;
    }
    
    .brand-advantages-section .section-title {
        font-size: 2rem !important;
        margin-bottom: 40px !important;
    }
}

/* 运营体系样式 */
.operation-system-section .operation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.operation-system-section .operation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #3498db, #e74c3c, #27ae60);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.operation-system-section .operation-card:hover::before {
    opacity: 1;
}

.operation-system-section .operation-icon {
    transition: transform 0.3s ease;
}

.operation-system-section .operation-card:hover .operation-icon {
    transform: scale(1.1) rotate(5deg);
}

.operation-system-section .operation-features div {
    transition: all 0.3s ease;
}

.operation-system-section .operation-card:hover .operation-features div {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.operation-system-section .operation-stages div {
    transition: all 0.3s ease;
}

.operation-system-section .operation-card:hover .operation-stages div {
    transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .operation-system-section .operation-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

@media (max-width: 768px) {
    .operation-system-section .operation-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .operation-system-section .operation-card {
        padding: 25px !important;
    }
    
    .operation-system-section .section-title {
        font-size: 2rem !important;
        margin-bottom: 40px !important;
    }
    
    .operation-system-section .operation-features {
        grid-template-columns: 1fr !important;
    }
    
    .operation-system-section .operation-stages div {
        margin-bottom: 15px !important;
    }
}

/* 总部支持样式 */
.headquarters-support-section .support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.headquarters-support-section .support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #3498db, #e74c3c, #27ae60, #9b59b6, #f39c12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.headquarters-support-section .support-card:hover::before {
    opacity: 1;
}

.headquarters-support-section .support-icon {
    transition: transform 0.3s ease;
}

.headquarters-support-section .support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
}

.headquarters-support-section .support-features div {
    transition: all 0.3s ease;
}

.headquarters-support-section .support-card:hover .support-features div {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .headquarters-support-section .support-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .headquarters-support-section .support-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .headquarters-support-section .support-card {
        padding: 30px !important;
    }
    
    .headquarters-support-section .section-title {
        font-size: 2rem !important;
        margin-bottom: 40px !important;
    }
    
    .headquarters-support-section .support-features {
        grid-template-columns: 1fr !important;
    }
}