/* Zen-Inspired Minimalist Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', 'Noto Serif JP', 'Playfair Display', serif;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #f0f0f0 100%);
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* PC端背景设置 */
@media (min-width: 769px) {
    .background-overlay {
        background: rgba(0, 0, 0, 0.2);
    }
    
    /* PC端卡片悬停效果调整 */
    .language-card:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .language-card:hover .card-icon {
        background: rgba(255, 255, 255, 0.4);
        color: #ffffff;
        transform: scale(1.08);
    }
    
    /* 确保PC端卡片不会变白 */
    .language-card::before {
        display: none !important;
    }
    
    .language-card:hover::before {
        display: none !important;
    }
}

/* 移动端背景设置 */
@media (max-width: 768px) {
    .background-overlay {
        background: rgba(0, 0, 0, 0.4);
    }
}

/* Additional Light Effects */
.page-lights {
    display: none;
}

.zen-circles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.zen-circle {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-radius: 50%;
    animation: zenFloat 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: -7s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation-delay: -14s;
}

.zen-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.zen-line {
    position: absolute;
    background: #d4d4d4;
    animation: zenFlow 15s infinite ease-in-out;
}

.line-1 {
    width: 1px;
    height: 200px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.line-2 {
    width: 100px;
    height: 1px;
    top: 40%;
    right: 20%;
    animation-delay: -5s;
}

.line-3 {
    width: 1px;
    height: 150px;
    bottom: 30%;
    left: 80%;
    animation-delay: -10s;
}

@keyframes zenFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes zenFlow {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* Floating Kimono Elements */
.kimono-elements {
    display: none;
}

/* Sakura Petals */
.sakura-container {
    display: none;
}

.sakura-petal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: inherit;
}

.sakura-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.sakura-2 {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.sakura-3 {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.sakura-4 {
    left: 40%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.sakura-5 {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.sakura-6 {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.sakura-7 {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 7s;
}

.sakura-8 {
    left: 80%;
    animation-delay: 7s;
    animation-duration: 9s;
}

@keyframes sakuraFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Main Container */
.zen-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

/* Header */
.zen-header {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.zen-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: relative;
    animation: logoPulse 3s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Logo图片样式 */
.logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: 
        brightness(0) 
        saturate(100%) 
        invert(82%) 
        sepia(35%) 
        saturate(380%) 
        hue-rotate(346deg) 
        brightness(108%) 
        contrast(98%)
        drop-shadow(0 0 15px rgba(255, 235, 180, 0.4));
    transition: all 0.3s ease;
    opacity: 0.95;
    margin-top: 8px;
}

.logo-image:hover {
    filter: 
        brightness(0) 
        saturate(100%) 
        invert(87%) 
        sepia(45%) 
        saturate(450%) 
        hue-rotate(340deg) 
        brightness(112%) 
        contrast(102%)
        drop-shadow(0 0 20px rgba(255, 235, 180, 0.6));
    transform: scale(1.02);
    opacity: 1;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 600;
    font-style: normal;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-shadow: 
        0 0 20px rgba(255,255,255,0.8),
        0 0 40px rgba(255,255,255,0.4),
        0 0 60px rgba(255,255,255,0.2),
        0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    transform: skew(-0.3deg);
    white-space: nowrap;
}

.zen-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.subtitle-line {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.subtitle-line:nth-child(2) {
    animation-delay: 1.2s;
}

/* Header Decoration */
.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.decoration-line {
    display: none;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: #8B0000;
    border-radius: 50%;
    animation: dotPulse 2s infinite ease-in-out;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Main Content */
.zen-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.language-guide {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Language Cards - 优雅文字按钮基础样式 */
.language-card {
    background: transparent;
    border: none;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.language-card::before {
    display: none;
}

/* 中文按钮 - 香槟金下划线 */
.language-card.chinese {
    position: relative;
}

.language-card.chinese::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #f4e4bc, #d4af37, transparent);
    border-radius: 1px;
    transition: all 0.5s ease;
    opacity: 0.7;
}

.language-card.chinese:hover::after {
    width: 70%;
    height: 2px;
    opacity: 1;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.language-card.chinese:hover {
    transform: translateY(-2px);
}

.language-card.chinese .card-title {
    font-family: 'Ma Shan Zheng', 'ZCOOL KuaiLe', 'Noto Serif SC', serif;
    font-size: 2.1rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    letter-spacing: 0.2em;
}

.language-card.chinese:hover .card-title {
    color: #f4e4bc;
    text-shadow: 0 0 25px rgba(244, 228, 188, 0.4);
    transform: scale(1.02);
}

.language-card.chinese .card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 日语按钮 - 珍珠银下划线 */
.language-card.japanese {
    position: relative;
}

.language-card.japanese::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c0c0c0, #e8e8e8, #c0c0c0, transparent);
    border-radius: 1px;
    transition: all 0.5s ease;
    opacity: 0.7;
}

.language-card.japanese:hover::after {
    width: 70%;
    height: 2px;
    opacity: 1;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

.language-card.japanese:hover {
    transform: translateY(-2px);
}

.language-card.japanese .card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    letter-spacing: 0.3em;
}

.language-card.japanese:hover .card-title {
    color: #e8e8e8;
    text-shadow: 0 0 25px rgba(232, 232, 232, 0.4);
    transform: scale(1.02);
}

.language-card.japanese .card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 英语按钮 - 亮铂金色下划线 */
.language-card.english {
    position: relative;
}

.language-card.english::after {
    content: '';
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(240, 240, 240, 0.5), #f5f5f5, #e8e8e8, transparent);
    border-radius: 1px;
    transition: all 0.5s ease;
    opacity: 0.9;
}

.language-card.english:hover::after {
    width: 70%;
    height: 2px;
    opacity: 1;
    box-shadow: 0 0 20px rgba(245, 245, 245, 0.6);
}

.language-card.english:hover {
    transform: translateY(-2px);
}

.language-card.english .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    transition: all 0.5s ease;
    letter-spacing: 0.15em;
    font-style: italic;
}

.language-card.english:hover .card-title {
    color: #f5f5f5;
    text-shadow: 0 0 25px rgba(245, 245, 245, 0.5);
    transform: scale(1.02);
}

.language-card.english .card-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Card Decoration - Simplified */
.card-decoration {
    display: none;
}

.card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    justify-content: center;
    height: 100%;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.language-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: scale(1.05);
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.card-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.card-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-arrow {
    display: none;
}

.language-card:hover .card-arrow {
    display: none;
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
    background: #fafafa;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif SC', serif;
}

.tab-btn:hover {
    border-color: #2c2c2c;
    color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: #2c2c2c;
    color: #fff;
    border-color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.3);
}

/* Pricing Content */
.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-content {
    display: none;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2c2c2c, #666);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: #f8f8f8;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 6px;
    margin: 0 -1rem;
}

.item-name {
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 400;
}

.item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Playfair Display', serif;
}

.price-item:last-child {
    border-bottom: none;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-tabs {
        gap: 0.5rem;
        margin: 2rem 0 1.5rem 0;
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .tab-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .tab-btn.active {
        background: linear-gradient(135deg, #2c2c2c, #444);
        box-shadow: 0 4px 16px rgba(44, 44, 44, 0.4);
        transform: translateY(-2px);
    }
    
    .tab-content {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0 0.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
    
    .price-list {
        gap: 1rem;
    }
    
    .price-item {
        padding: 1.2rem 1rem;
        border-radius: 12px;
        background: #fafafa;
        border: 1px solid #f0f0f0;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .price-item:hover {
        background: #f8f8f8;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        border-color: #e0e0e0;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    
    .item-name {
        font-size: 1rem;
        font-weight: 500;
        color: #2c2c2c;
        line-height: 1.4;
    }
    
    .item-price {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2c2c2c;
        background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
        padding: 0.5rem 1rem;
        border-radius: 8px;
        min-width: 80px;
        text-align: center;
    }
}

/* Footer */
.zen-footer {
    margin-top: 4rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

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

.footer-line {
    width: 60px;
    height: 1px;
    background: #d4d4d4;
}

.footer-text {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer Decoration */
.footer-decoration {
    margin-top: 1rem;
}

.footer-pattern {
    width: 100px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    border-radius: 10px;
    animation: footerPattern 3s infinite ease-in-out;
}

@keyframes footerPattern {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.6; transform: scaleX(1.2); }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .zen-container {
        padding: 3rem 1.5rem;
    }
    
    .language-grid {
        gap: 2rem;
    }
    
    .language-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .zen-container {
        padding: 2rem 1rem;
    }
    
    .zen-header {
        margin-bottom: 4rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    /* 中等屏幕logo图片调整 */
    .logo-image {
        height: 80px;
        margin-top: 6px;
    }
    
    .language-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
    }
    
    .language-card {
        padding: 1rem 0.8rem;
    }
    
    /* 移动端下划线位置调整 */
    .language-card.chinese::after,
    .language-card.japanese::after,
    .language-card.english::after {
        bottom: 0.5rem;
        width: 70%;
    }
    
    .language-card.chinese:hover::after,
    .language-card.japanese:hover::after,
    .language-card.english:hover::after {
        width: 85%;
    }
    
    .card-inner {
        flex-direction: row;
        text-align: left;
        gap: 0.8rem;
    }
    
    .card-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .card-content {
        flex: 1;
    }
    
    .card-arrow {
        align-self: center;
    }
    
    /* Adjust visibility instead of hiding completely */
    .kimono-elements .floating-kimono {
        opacity: 0.05;
        font-size: 1rem;
    }
    
    .sakura-container .sakura-petal {
        opacity: 0.3;
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .zen-container {
        padding: 1.5rem 1rem;
    }
    
    .zen-logo {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* 移动端logo图片调整 */
    .logo-image {
        height: 70px;
        margin-top: 5px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .subtitle-line {
        font-size: 1rem;
    }
    
    .language-card {
        padding: 0.8rem;
    }
    
    /* 小屏幕下划线位置进一步调整 */
    .language-card.chinese::after,
    .language-card.japanese::after,
    .language-card.english::after {
        bottom: 0.3rem;
        width: 75%;
    }
    
    .language-card.chinese:hover::after,
    .language-card.japanese:hover::after,
    .language-card.english:hover::after {
        width: 90%;
    }
    
    .card-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }
    
    .card-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    /* 移动端价目表额外优化 */
    .pricing-tabs {
        margin: 1.5rem 0 1rem 0;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 240px;
        border-radius: 10px;
    }
    
    .tab-content {
        padding: 1rem;
        margin: 0 0.25rem;
        border-radius: 12px;
    }
    
    .price-item {
        padding: 1rem 0.8rem;
        border-radius: 10px;
        margin-bottom: 0.4rem;
    }
    
    .price-item:hover {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .item-name {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .item-price {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
        min-width: 70px;
    }
}

/* Main Page Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    padding: 1rem 0;
    opacity: 0;
    animation: navbarEntrance 1s ease-out 0.5s forwards;
    transform: translateY(-20px);
}

@keyframes navbarEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-logo h2:hover {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.nav-link {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2c2c2c;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    position: relative;
}

.language-btn {
    background: none;
    border: 1px solid #e8e8e8;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: #f8f8f8;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-switcher:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.language-option:hover {
    background: #f8f8f8;
}

.language-option.active {
    background: #f0f0f0;
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: heroLight 8s ease-in-out infinite alternate;
    z-index: 4;
}

/* 优雅入场效果 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.2) 60%, transparent 100%);
    animation: heroEntrance 2s ease-out forwards;
    z-index: 5;
}

@keyframes heroEntrance {
    0% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    40% {
        opacity: 0.6;
        transform: scale(1.1);
    }
    70% {
        opacity: 0.3;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@keyframes heroLight {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.03);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}



.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 3rem;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    transform: translateY(30px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    font-style: normal;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-shadow: 
        0 0 20px rgba(255,255,255,0.8),
        0 0 40px rgba(255,255,255,0.4),
        0 0 60px rgba(255,255,255,0.2),
        0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate, titleEntrance 1.5s ease-out 0.8s forwards;
    transform: skew(-0.3deg);
    white-space: nowrap;
    opacity: 0;
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: skew(-0.3deg) translateY(50px) scale(0.8);
    }
    50% {
        opacity: 0.5;
        transform: skew(-0.3deg) translateY(25px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: skew(-0.3deg) translateY(0) scale(1);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 20px rgba(255,255,255,0.8),
            0 0 40px rgba(255,255,255,0.4),
            0 0 60px rgba(255,255,255,0.2),
            0 2px 4px rgba(0,0,0,0.3);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(255,255,255,0.9),
            0 0 50px rgba(255,255,255,0.5),
            0 0 70px rgba(255,255,255,0.3),
            0 2px 4px rgba(0,0,0,0.3);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 50%, #d8d8d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    text-shadow: 
        0 0 15px rgba(240,240,240,0.6),
        0 0 30px rgba(240,240,240,0.3),
        0 1px 2px rgba(0,0,0,0.3);
    position: relative;
    animation: subtitleGlow 4s ease-in-out infinite alternate, subtitleEntrance 1.5s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes subtitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    60% {
        opacity: 0.3;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleGlow {
    0% {
        text-shadow: 
            0 0 15px rgba(240,240,240,0.6),
            0 0 30px rgba(240,240,240,0.3),
            0 1px 2px rgba(0,0,0,0.3);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(240,240,240,0.7),
            0 0 35px rgba(240,240,240,0.4),
            0 1px 2px rgba(0,0,0,0.3);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: buttonsEntrance 1.5s ease-out 1.2s forwards;
    transform: translateY(30px);
}

@keyframes buttonsEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: translateY(15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn {
    padding: 1rem 2rem;
    border: 1px solid #8B0000;
    background: linear-gradient(135deg, #8B0000 0%, #660000 50%, #4A0000 100%);
    color: #ffffff;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139,0,0,0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: #660000;
    color: #ffffff;
    border-color: #660000;
    transform: translateY(-2px);
}

.btn-primary {
    background: #ffffff;
    color: #2c2c2c;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.hero-buttons .whatsapp-btn {
    background: #8B0000;
    color: #fff;
    border-color: #8B0000;
}

.hero-buttons .whatsapp-btn:hover {
    background: #660000;
    border-color: #660000;
    color: #fff;
}

/* Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

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

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}



/* Products Section */
.products {
    padding: 6rem 0;
    background: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c2c2c;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #8B0000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #660000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.whatsapp-btn i {
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #fff;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

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

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: #fff;
}

/* 快速链接水平布局 */
.footer-section:last-child ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-section:last-child ul li {
    margin-bottom: 0;
}

.footer-section:last-child ul li a {
    white-space: nowrap;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #666;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 300;
}

/* Responsive Design for Main Pages */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
        font-family: '楷体', '华文楷体', 'KaiTi', 'Noto Serif SC', 'Noto Serif JP', 'Playfair Display', serif;
        font-style: italic;
        transform: skew(-0.2deg);
        white-space: nowrap;
        line-height: 1.1;
        letter-spacing: 0.08em;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .hero-text {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2.5rem;
        font-family: '楷体', '华文楷体', 'KaiTi', 'Noto Serif SC', 'Noto Serif JP', 'Playfair Display', serif;
        font-style: italic;
        transform: skew(-0.1deg);
        white-space: nowrap;
        line-height: 1.1;
        letter-spacing: 0.06em;
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .btn {
        width: 160px;
        min-width: 160px;
    }
    
    .hero-buttons .btn-light-gradient {
        width: 160px;
        min-width: 160px;
        justify-content: center;
        height: 48px;
        min-height: 48px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-price-row {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section:last-child ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-section:last-child ul li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-text {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-family: '楷体', '华文楷体', 'KaiTi', 'Noto Serif SC', 'Noto Serif JP', 'Playfair Display', serif;
        font-style: italic;
        transform: skew(0deg);
        white-space: nowrap;
        line-height: 1.1;
        letter-spacing: 0.05em;
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .features {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .products-grid {
        gap: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    /* 移动端首页按钮并排显示 */
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .btn {
        width: 120px;
        min-width: 120px;
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .hero-buttons .btn-light-gradient {
        width: 120px;
        min-width: 120px;
        font-size: 14px;
        padding: 10px 15px;
        height: 44px;
        min-height: 44px;
    }
    
    /* 移动端精选推荐按钮不换行 */
    .whatsapp-btn-light {
        font-size: 16px;
        padding: 12px 50px;
        white-space: nowrap;
        flex-shrink: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 200px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-section:last-child ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-section:last-child ul li {
        margin-bottom: 0.5rem;
    }
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: #fafafa;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.google-map {
    height: 400px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.map-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.location-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2c2c2c, #666);
}

.location-details h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-family: 'Noto Serif SC', serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-details h3 i {
    color: #666;
    font-size: 1.2rem;
}

.location-details p {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #666;
    margin: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    color: #2c2c2c;
    padding-left: 0.5rem;
}

.contact-info p i {
    width: 16px;
    color: #999;
}

.contact-info p:last-child {
    border-bottom: none;
}

/* Amenities */
.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f5f5f5;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f8f8;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
}

.amenity-item i {
    color: #666;
    font-size: 1rem;
}

/* Responsive Design for Map */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .google-map {
        height: 300px;
    }
    
    .location-details {
        padding: 1.5rem;
    }
    
    .location-details h3 {
        font-size: 1.3rem;
    }
    
    .location-details p {
        font-size: 1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .amenities {
        gap: 0.8rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .amenity-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
} 

/* Memorial Photos Section */
.memorial-photos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.memorial-photos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="zen-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4d4d4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23zen-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.memorial-photos .container {
    position: relative;
    z-index: 1;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.photo-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: #fff;
    height: 300px;
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-card:hover .photo-image {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.photo-card:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.photo-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Responsive Design for Memorial Photos */
@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .photo-card {
        height: 250px;
    }
    
    .photo-overlay {
        padding: 20px 15px 15px;
    }
    
    .photo-overlay h3 {
        font-size: 1.1rem;
    }
    
    .photo-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photo-card {
        height: 200px;
    }
    
    .photo-overlay {
        padding: 15px 12px 12px;
    }
    
    .photo-overlay h3 {
        font-size: 1rem;
    }
    
    .photo-overlay p {
        font-size: 0.8rem;
    }
}

/* 统一的浅橙色按钮样式 */
.unified-whatsapp-section {
    text-align: center;
    margin-top: 20px;
    padding: 15px 0;
}

.whatsapp-btn-light {
    background: linear-gradient(135deg, #F8FBFF 0%, #F0F8FF 50%, #E0F6FF 100%);
    color: #2F4F4F;
    border: 2px solid #B0E0E6;
    padding: 14px 60px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(176, 224, 230, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 240px;
}

.whatsapp-btn-light:hover {
    background: linear-gradient(135deg, #F0F8FF 0%, #E0F6FF 50%, #B0E0E6 100%);
    color: #2F4F4F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(176, 224, 230, 0.3);
    border-color: #B0E0E6;
}

.whatsapp-btn-light i {
    font-size: 22px;
    color: #2F4F4F;
}

/* 首页浅橙色按钮样式 */
.btn-light-gradient {
    background: linear-gradient(135deg, #fffaf5 0%, #fff0e0 50%, #ffe0c0 100%);
    color: #8b4513;
    border: 2px solid #ffcc80;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 204, 128, 0.2);
    height: 48px;
    min-height: 48px;
    line-height: 1;
}

.btn-light-gradient:hover {
    background: linear-gradient(135deg, #fff0e0 0%, #ffe0c0 50%, #ffd4a0 100%);
    color: #a0522d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 204, 128, 0.3);
    border-color: #ffb366;
}

.hero-buttons .btn-light-gradient {
    margin: 0 10px;
}

.hero-buttons .btn-light-gradient i {
    color: #ffa726;
}

/* Store Info Section Styles */
.store-info-section {
    margin: 60px 0 40px 0;
    padding: 40px 20px;
    background: transparent;
}

.store-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 25px;
}

.store-address {
    flex: 1;
}

.store-name-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.store-name-with-icon i {
    color: #ffffff;
    font-size: 1.4em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.store-name {
    font-size: 1.0em;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 8px;
    font-family: 'Noto Serif JP', serif;
}

.store-address-text {
    font-size: 0.9em;
    color: #e0e0e0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.store-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.store-contact p {
    font-size: 0.95em;
    color: #e0e0e0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-contact i {
    color: #d4af37;
    width: 16px;
}

.booking-section {
    flex-shrink: 0;
}

.instant-booking-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    color: white;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.instant-booking-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.instant-booking-btn i,
.instant-booking-btn .whatsapp-svg-icon {
    font-size: 1.2em;
    color: white;
    opacity: 0.9;
    width: 20px;
    height: 20px;
}

.instant-booking-btn .whatsapp-svg-icon {
    fill: currentColor;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.btn-sub {
    font-size: 0.8em;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .store-info-section {
        margin: 40px 0 30px 0;
        padding: 30px 15px;
    }
    
    .store-info-container {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }
    
    .store-name-with-icon {
        justify-content: center;
    }
    
    .store-name {
        font-size: 1.1em;
    }
    
    .store-contact {
        align-items: center;
    }
    
    .instant-booking-btn {
        padding: 14px 24px;
        gap: 10px;
    }
    
    .btn-main {
        font-size: 0.95em;
    }
    
    .btn-sub {
        font-size: 0.75em;
    }
}

/* Gallery More Button Styles */
.gallery-more-section {
    text-align: center;
    margin-top: 40px;
}

.gallery-more-btn {
    background: linear-gradient(135deg, #F8FBFF 0%, #F0F8FF 50%, #E0F6FF 100%);
    color: #2F4F4F;
    border: 2px solid #B0E0E6;
    padding: 14px 60px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(176, 224, 230, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 240px;
}

.gallery-more-btn:hover {
    background: linear-gradient(135deg, #F0F8FF 0%, #E0F6FF 50%, #B0E0E6 100%);
    color: #2F4F4F;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(176, 224, 230, 0.3);
    border-color: #B0E0E6;
}

@media (max-width: 768px) {
    .gallery-more-btn {
        font-size: 16px;
        padding: 12px 50px;
        white-space: nowrap;
        flex-shrink: 0;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 200px;
        justify-content: center;
    }
} 