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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        .header {
            background: #000;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #ccbc9a;
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .language-switcher {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .language-switcher button {
			height: 30px;
            background: none;
            border: 1px solid white;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-switcher button:hover,
        .language-switcher button.active {
            background: #ccbc9a;
            border-color: #ccbc9a;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu */
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #333;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transform: translateY(-100%);
            transition: transform 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .mobile-nav.active {
            display: block;
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-nav ul li {
            padding: 0.8rem 2rem;
            border-bottom: 1px solid #444;
        }

        .mobile-nav ul li:last-child {
            border-bottom: none;
        }

        .mobile-nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
        }

        .mobile-nav ul li a:hover {
            color: #e74c3c;
        }

        .mobile-language-switcher {
            padding: 1rem 2rem;
            border-top: 1px solid #444;
            display: flex;
            gap: 0.5rem;
        }

        .mobile-language-switcher button {
            height: 30px;
            background: none;
            border: 1px solid white;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-language-switcher button:hover,
        .mobile-language-switcher button.active {
            background: #e74c3c;
            border-color: #e74c3c;
        }

        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary {
            background: #e6dfd0;
            color: white;
        }

        .btn-primary:hover {
            background: #ccbc9a;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid white;
            color: white;
            background: transparent;
        }

        .btn-outline:hover {
            background: white;
            color: #333;
        }

        /* Carousel Section */
        .carousel {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .carousel-dot.active {
            background: #ccbc9a;
        }

        /* Loading状态 */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 4rem;
            background: #f8f9fa;
        }

        .loading-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #ccbc9a;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin-right: 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Red Banner */
        .red-banner {
            background: #e74c3c;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .red-banner h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .red-banner p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
            padding: 0 2rem;
        }

        /* Who We Are Section */
        .who-we-are {
            padding: 5rem 0;
            background: #f8f9fa;
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 3.5rem;
            position: relative;
        }

        /*.section-title h2::after {
            content: '';
            width: 50px;
            height: 3px;
            background: #e6dfd0;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        */
        .about-content {
            /*display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;*/
            align-items: center;
        }

        .about-image {
            position: relative;
        }
        
        .about-text {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /*.about-text a {
            width: 6rem;
        }*/

        .coffee-cup {
            width: 100%;
            max-width: 400px;
            height: 300px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            position: relative;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .coffee-cup::before {
            content: '';
            width: 80%;
            height: 60%;
            background: linear-gradient(135deg, #8B4513, #A0522D);
            border-radius: 50%;
            position: absolute;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #ccbc9a;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        /* What We Offer Section */
        .what-we-offer {
            padding: 5rem 0;
            background: white;
        }

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

        .service-card {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #eee;
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .service-content {
            flex: 1;
        }

        .service-content h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .service-content p {
            color: #666;
            line-height: 1.6;
        }

        /* Featured Brands Section */
        .brands-section {
            padding: 5rem 0;
            background: white;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 0.5rem;
            margin-top: 3rem;
        }

        .brand-card {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            /*padding: 2rem;*/
            /*border-radius: 15px;*/
            transition: transform 0.3s, box-shadow 0.3s;
            /*border: 1px solid #eee;*/
            text-align: left;
            background: white;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .brand-card:hover {
            /*transform: translateY(-5px);*/
            /*box-shadow: 0 15px 40px rgba(0,0,0,0.1);*/
            text-decoration: none;
            color: inherit;
        }

        .brand-logo {
            width: 100%;
            height: 373px;
            /*border-radius: 50%;*/
            /*display: flex;*/
            align-items: center;
            /*justify-content: center;*/
            flex-shrink: 0;
            overflow: hidden;
            border: 3px solid #f0f0f0;
            background: #f8f9fa;
            position: relative;
        }
        
        .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .brand-logo img:first-child {
            z-index: 12;
        }
        
        .brand-logo img:last-child {
            z-index: 10;
        }
        
        .brand-logo:hover img:first-child {
            display: none;
            z-index: 10;
        }
        
        .brand-logo:hover img:last-child {
            transform: scale(1.1);
            z-index: 12;
        }
        
        .brand-logo.no-image {
            background: #e74c3c;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .brand-popup {
            position: absolute;
            bottom: 30px;
            width: 250px;
            height: 150px;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: transform 0.3s ease;
            z-index: 10;
        }
        
        .brand-popup img {
            width: 150px;
            height: 100px;
            margin-bottom: 10px;
        }

        .brand-content {
            flex: 1;
        }

        .brand-content h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: #333;
            font-weight: 600;
        }

        .brand-content p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Menu Section */
        .menu-section {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            /*height: 20rem;*/
        }

        .menu-item {
            /*background: white;*/
            /*border-radius: 10px;*/
            overflow: hidden;
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
            transition: transform 0.3s;
            cursor: pointer;
            position: relative;
            width: 100%;
            
        }

        .menu-item-image {
            position: absolute;
            top: 0;
            left: 0;
            height: 260px;
            width: 100%;
            background: #ddd;
           
            overflow: hidden;
            background-size: cover;
            background-position: center; 
            transition: transform 0.3s ease;
        }
        
        .menu-item .menu-item-image:first-child {
            z-index: 10;
        }
       

        .menu-item:hover .menu-item-image:first-child {
            display: none;
        }
        
        .menu-item .menu-item-image:last-child {
            z-index: 12;
        }
        
        .menu-item:hover .menu-item-image:last-child {
            transform: scale(1.1);
            display: block;
        }

        .menu-item:hover .menu-item-image {
            transform: scale(1.1);
        }

        .menu-item-image-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .menu-item-content {
            padding: 1.5rem 0;
            padding-top: calc(260px + 1.5rem);
            /*text-align: center;*/
        }

        .menu-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .menu-item .product-brands {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            margin-bottom: 0.8rem;
            justify-content: center;
        }

        .brand-tag {
            background-color: #e3f2fd;
            color: #1976d2;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .menu-item .product-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            margin-bottom: 1rem;
            justify-content: center;
        }

        .category-tag {
            background-color: #f3e5f5;
            color: #7b1fa2;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .menu-item .price {
            font-family: Arial, sans-serif;
        }
		
		.menu-item .original-price {
		  color: #999;
		  text-decoration: line-through;
		  margin-right: 8px;
		}
		
		.menu-item .current-price {
		  color: #ccbc9a;
		  font-weight: bold;
		}

        /* News Section */
        .news-section {
            padding: 5rem 0;
            background: white;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .news-card {
            background: white;
            /*border-radius: 10px;*/
            overflow: hidden;
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
            transition: transform 0.3s;
            cursor: pointer;
        }

        /*.news-card:hover {
            transform: translateY(-5px);
        }*/

        .news-image {
            height: 300px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            background-size: cover;
            background-position: center;
        }

        .news-card:hover .news-image {
            transform: scale(1.1);
        }

        

        .news-image-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .news-content {
            padding: 1.5rem 0;
        }

        .news-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .news-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .news-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.8rem;
            color: #999;
            align-items: center;
        }

        .news-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
		
		.news-icon {
		    vertical-align: middle; /* 图标与文字对齐 */
		    margin-right: 4px;     /* 图标与文字的间距 */
		}

        /* Contact Section */
        .contact-section {
            padding: 0;
        }

        .contact-upper {
            background: #ccbc9a;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }

        .contact-lower {
            background: white;
            color: #333;
            padding: 5rem 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: none;
            border-radius: 5px;
            background: rgba(255,255,255,0.9);
            color: #333;
			box-shadow: 1px 1px 10px #ddd;
        }

        .form-group textarea {
            height: 100px;
            resize: vertical;
        }

		.form-all{
			
		}

        /* Footer */
        .footer {
            background: #000;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-copyright {
            flex: 1;
            text-align: center;
            font-size: 0.9rem;
            color: #ccc;
        }

        /* 隐藏类 */
        .hidden {
            display: none !important;
        }

        /* 错误状态 */
        .error-message {
            text-align: center;
            color: #e74c3c;
            padding: 2rem;
            background: #ffeaea;
            border-radius: 8px;
            margin: 2rem 0;
        }

        .empty-message {
            text-align: center;
            color: #666;
            padding: 2rem;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .language-switcher {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-nav {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-grid,
            .menu-grid,
            .news-grid,
            .brands-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-copyright {
                text-align: center;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                min-width: auto;
            }

            .brand-card {
                min-width: auto;
                flex-direction: column;
                text-align: center;
            }

            .brand-logo {
                width: 100px;
                height: 100px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Scroll animations */
        .section {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }