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

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

        /* 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;
        }

        /* Brand Header Image */
        .brand-header-image {
            height: 60vh;
            min-height: 400px;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .brand-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        /* Main Content */
        .main-content {
            min-height: calc(100vh - 160px);
            padding: 3rem 0;
        }

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

        /* Brand Detail Container */
        .brand-detail {
            /*background: white;*/
            /*border-radius: 12px;*/
            /*box-shadow: 0 4px 20px rgba(0,0,0,0.1);*/
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
        }

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

        /* Brand Title */
        .brand-title {
            padding: 6rem 3rem 2rem;
            text-align: center;
            /*border-bottom: 1px solid #eee;*/
        }

        .brand-title h1 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }

        .brand-summary {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Brand Image */
        .brand-image-container {
            padding: 3rem;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .brand-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .brand-image:hover {
            transform: scale(1.02);
        }

        .no-image {
            color: #999;
            font-style: italic;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 8px;
            border: 2px dashed #ddd;
        }

        /* Brand Content */
        .brand-content {
            padding: 3rem;
            line-height: 1.8;
            font-size: 1.1rem;
            color: #444;
        }

        .brand-content p {
            margin-bottom: 1.5rem;
        }

        .brand-content h1,
        .brand-content h2,
        .brand-content h3,
        .brand-content h4,
        .brand-content h5,
        .brand-content h6 {
            margin: 2rem 0 1rem;
            color: #333;
            line-height: 1.4;
        }

        .brand-content h1 { font-size: 2rem; }
        .brand-content h2 { font-size: 1.75rem; }
        .brand-content h3 { font-size: 1.5rem; }
        .brand-content h4 { font-size: 1.25rem; }

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

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

        .brand-content img {
            max-width: 100%;
            height: auto;
            /*border-radius: 6px;*/
            margin: 1rem 0;
            /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
        }

        .brand-content blockquote {
            border-left: 4px solid #e74c3c;
            padding-left: 1.5rem;
            margin: 1.5rem 0;
            color: #666;
            font-style: italic;
            background: #f8f9fa;
            padding: 1rem 1.5rem;
            border-radius: 0 6px 6px 0;
        }

        .brand-content a {
            color: #e74c3c;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s;
        }

        .brand-content a:hover {
            border-bottom-color: #e74c3c;
        }
        
        .section-title {
            text-align: center;
            border-bottom: 1px solid #e6dfd0;
            padding-bottom: 1rem;
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .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%;*/
            width: 244px;
        }

        .menu-item-image {
            position: absolute;
            top: 0;
            left: 0;
            height: 244px;
            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;
            font-size: 1rem;
            padding-top: calc(244px + 1.5rem);
            /*text-align: center;*/
        }

        .menu-item .price {
            color: #ccbc9a;
            font-weight: 700;
        }


        /* Loading & Error States */
        .loading,
        .error {
            text-align: center;
            padding: 5rem 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            margin-top: 3rem;
        }

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

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

        .error {
            color: #e74c3c;
        }

        .error h2 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            margin-top: 1rem;
        }

        .btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        /* Footer - 与品牌广场页面相同 */
        .footer {
            background: #000;
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-top: auto;
        }

        .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;
        }

        /* Image Modal */
        .image-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            backdrop-filter: blur(4px);
        }

        .image-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            z-index: 2001;
            transition: opacity 0.3s;
        }

        .close-modal:hover {
            opacity: 0.7;
        }

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

            .language-switcher {
                display: none;
            }

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

            .mobile-nav {
                display: block;
            }

            .brand-header-image {
                height: 50vh;
                min-height: 300px;
            }

            .container {
                padding: 0 1rem;
            }

            .brand-title {
                padding: 2rem 1.5rem 1.5rem;
            }

            .brand-title h1 {
                font-size: 1.8rem;
            }

            .brand-summary {
                font-size: 1rem;
            }

            .brand-image-container {
                padding: 2rem 1.5rem;
            }

            .brand-content {
                padding: 2rem 1.5rem;
                font-size: 1rem;
            }

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

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

        @media (max-width: 480px) {
            .brand-header-image {
                height: 40vh;
                min-height: 250px;
            }

            .brand-title h1 {
                font-size: 1.5rem;
            }

            .brand-summary {
                font-size: 0.95rem;
            }

            .brand-content {
                padding: 1.5rem 1rem;
                font-size: 0.95rem;
            }
        }

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