  :root {
            --primary-gold: #c9a66b;
            --text-dark: #5a4a3a;
            --bg-base: #f9f6f2;
        }

        
  /* 菜单主容器 */
        .spa-menu-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 40px 50px;
            background-color: var(--bg-light);
            /* 模拟图片中的渐变和气泡感 */
            /* background-image: 
                radial-gradient(circle at 50% 100%, rgba(255,255,255,0.8), transparent),
                linear-gradient(rgba(249, 246, 242, 0.85), rgba(249, 246, 242, 0.85)),
                url('https://www.transparenttextures.com/patterns/pinstriped-suit.png'); */
            position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
            border-radius: 2px;
            text-align: center;
            overflow: hidden;
        }
 /* 顶部Logo区域 */
        .menu-logo {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .menu-logo img {
            width: 220px;
            height: auto;
            margin-bottom: 10px;
        }

/* 标题样式 */
.menu-main-title {
     text-align: center;
            font-size: 2.2rem;
            letter-spacing: 2px;
            color: var(--primary-gold);
            margin-bottom: 10px;
            text-transform: uppercase;
}
.menu-subtitle-cn {
 text-align: center;
            font-size: 1.2rem;
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 30px;
            opacity: 0.8;
}

/* 类别标题 */
.category-title {
    font-size: 1.3rem;
    color: #6d5f4e;
    border-bottom: 1px solid #e0d5c5;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* 价格条目：点状连接符效果 */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    color: #555;
}

.menu-item::after {
    content: "";
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
    order: 2;
}

.menu-item span:first-child { order: 1; }
.menu-item .price { order: 3; font-weight: bold; color: #333; }

/* 底部双栏 */
.menu-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px double #e0d5c5;
}

.bottom-box h4 {
    color: #4a4238;
    margin-bottom: 15px;
    font-style: italic;
}

.price-notice {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 40px;
    font-style: italic;
}