/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
    color: #333;
    background-color: #f9f7f3;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* 所有类名以pc开头 */
.pc-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.pc-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #a68e68;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pc-btn:hover {
    background-color: #7a6748;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

section {
    padding: 80px 0;
    overflow: hidden;
}

.pc-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.pc-section-title h2 {
    font-size: 36px;
    color: #5a482b;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pc-section-title p {
    font-size: 18px;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

/* 顶部联系栏样式 */
.pc-top-bar {
    background: linear-gradient(135deg, #5a482b 0%, #4a3a22 100%);
    color: #e8e5d8;
    font-size: 14px;
    padding: 15px 0;
    position: relative;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 顶部栏装饰效果 */
.pc-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.pc-top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.pc-top-contact {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-top-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e8e5d8;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    padding: 5px 0;
}

.pc-top-contact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a68e68, #c8b38e);
    transition: width 0.4s ease;
}

.pc-top-contact-item:hover {
    color: #fff;
    transform: translateY(-2px);
}

.pc-top-contact-item:hover::after {
    width: 100%;
}

.pc-top-contact-item i {
    font-size: 18px;
    color: #a68e68;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.pc-top-contact-item:hover i {
    color: #fff;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pc-top-contact-item span {
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    color: #e8e5d8;
}

.pc-top-contact-item:hover span {
    color: #fff;
    transform: translateY(-2px);
}

.pc-top-social {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #e8e5d8;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pc-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pc-social-link:hover::before {
    left: 100%;
}

.pc-social-link:hover {
    background: linear-gradient(135deg, #a68e68, #c8b38e);
    color: #fff;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(166, 142, 104, 0.4);
    border-color: transparent;
}

.pc-social-link i {
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.pc-social-link:hover i {
    transform: scale(1.2);
}

/* 主导航栏样式 */
header.pc-main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(166, 142, 104, 0.2);
}

.pc-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 30px;
    flex-wrap: wrap;
}

/* Logo区域 */
.pc-header-logo {
    flex: 0 0 auto;
}

.pc-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.pc-logo-text {
    font-size: 36px;
    font-weight: 800;
    color: #5a482b;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pc-main-header:hover .pc-logo-text {
    transform: scale(1.02);
}

.pc-logo-text span {
    color: #a68e68;
    background: linear-gradient(135deg, #a68e68, #c8b38e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pc-logo-slogan {
    font-size: 13px;
    color: #666;
    margin: 8px 0 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.pc-logo-slogan::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a68e68, #c8b38e);
    transition: width 0.3s ease;
}

.pc-main-header:hover .pc-logo-slogan::before {
    width: 100%;
}

.pc-main-header:hover .pc-logo-slogan {
    color: #5a482b;
}

/* 搜索框 */
.pc-header-search {
    flex: 1;
    max-width: 500px;
    min-width: 200px;
}

.pc-search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.pc-search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #e8e5d8;
    border-radius: 30px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
}

.pc-search-input:focus {
    border-color: #a68e68;
    box-shadow: 0 0 0 3px rgba(166, 142, 104, 0.1);
}

.pc-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #a68e68;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.pc-search-btn:hover {
    background-color: #7a6748;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(166, 142, 104, 0.3);
}

/* 预约按钮 */
.pc-header-cta {
    flex: 0 0 auto;
}

.pc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #a68e68 0%, #7a6748 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(166, 142, 104, 0.3);
    border: none;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.pc-cta-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.6s ease;
}

.pc-cta-btn:hover::before {
    left: 100%;
}

.pc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(166, 142, 104, 0.4);
    background: linear-gradient(135deg, #7a6748 0%, #a68e68 100%);
}

.pc-cta-btn i {
    font-size: 18px;
    transition: all 0.4s ease;
}

.pc-cta-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* 主导航 */
.pc-main-nav {
    position: relative;
    border-top: 1px solid rgba(166, 142, 104, 0.1);
    padding: 10px 0;
}

.pc-navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pc-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    outline: none;
    position: relative;
}

.pc-menu-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #5a482b;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

/* 导航菜单 */
.pc-nav-menu {
    display: flex;
    gap: 60px;
    list-style: none;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.pc-nav-menu li {
    position: relative;
}

.pc-nav-menu li a {
    font-size: 16px;
    font-weight: 700;
    color: #5a482b;
    padding: 15px 0;
    display: block;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
}

.pc-nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #a68e68, #c8b38e);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.pc-nav-menu li a:hover {
    color: #a68e68;
    transform: translateY(-2px);
}

.pc-nav-menu li a:hover::before {
    width: 100%;
}

.pc-nav-menu li:hover {
    transform: translateY(-2px);
}

/* 二级菜单样式 */
.pc-nav-menu ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    list-style: none;
    border: 1px solid rgba(166, 142, 104, 0.1);
}

.pc-nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.pc-nav-menu ul li {
    margin: 0;
    width: 100%;
}

.pc-nav-menu ul li a {
    padding: 10px 25px;
    border-bottom: none;
    font-size: 14px;
    color: #666;
    text-transform: none;
    letter-spacing: normal;
    border-radius: 0;
}

.pc-nav-menu ul li a:hover {
    background-color: #f9f7f3;
    color: #a68e68;
    border-bottom: none;
    padding-left: 30px;
}

/* 三级菜单样式 */
.pc-nav-menu ul ul {
    top: 0;
    left: 100%;
    margin-left: 10px;
    transform: translateY(0);
}

.pc-nav-menu li:hover > ul ul {
    transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pc-header-content {
        gap: 20px;
    }
    
    .pc-nav-menu {
        gap: 30px;
    }
    
    .pc-logo-text {
        font-size: 28px;
    }
    
    .pc-cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .pc-top-bar {
        display: none;
    }
    
    header.pc-main-header {
        top: 0;
    }
    
    .pc-header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px 0;
    }
    
    .pc-header-logo {
        order: 1;
    }
    
    .pc-header-search {
        order: 3;
        max-width: none;
    }
    
    .pc-header-cta {
        order: 2;
        text-align: center;
    }
    
    .pc-main-nav {
        order: 4;
        display: none;
    }
    
    .pc-mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .pc-nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        flex-direction: column;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        width: 300px;
        height: 100vh;
        padding: 80px 20px 20px;
        gap: 15px;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .pc-nav-menu.active {
        right: 0;
    }
    
    .pc-nav-menu li a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(166, 142, 104, 0.1);
    }
    
    .pc-nav-menu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 1px solid rgba(166, 142, 104, 0.1);
        border-radius: 6px;
        margin: 10px 0 10px 20px;
        padding: 10px 0;
        transform: none;
    }
    
    .pc-nav-menu ul ul {
        margin-left: 20px;
    }
    
    .pc-nav-menu ul li a {
        padding: 10px 15px;
    }
    
    .pc-nav-menu ul li a:hover {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .pc-logo-text {
        font-size: 24px;
    }
    
    .pc-logo-slogan {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .pc-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pc-header-content {
        padding: 10px 0;
    }
    
    .pc-logo {
        align-items: center;
    }
    
    .pc-logo-text {
        font-size: 22px;
    }
    
    .pc-search-input {
        padding: 10px 40px 10px 15px;
        font-size: 14px;
    }
    
    .pc-search-btn {
        width: 35px;
        height: 35px;
    }
}

/* Hero区域样式 */
.pc-hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://picsum.photos/id/225/1920/1080') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.pc-hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.pc-hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 工作室介绍样式 */
.pc-about {
    background-color: #fff;
}

.pc-about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pc-about-img {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pc-about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.pc-about-text {
    flex: 1;
}

.pc-about-text h3 {
    font-size: 28px;
    color: #5a482b;
    margin-bottom: 20px;
}

.pc-about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* 茶品展示样式 */
.pc-tea-products {
    background-color: #f9f7f3;
}

.pc-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.pc-product-card {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pc-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pc-product-img {
    height: 250px;
    overflow: hidden;
}

.pc-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.pc-product-card:hover .pc-product-img img {
    transform: scale(1.05);
}

.pc-product-info {
    padding: 25px;
}

.pc-product-info h4 {
    font-size: 20px;
    color: #5a482b;
    margin-bottom: 10px;
}

/* 品茶标签样式 */
.pc-product-tags {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pc-product-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f0e9d8;
    color: #a68e68;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.pc-product-info p {
    color: #777;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.pc-product-price {
    font-size: 18px;
    color: #a68e68;
    font-weight: 600;
}

/* 服务区域样式 */
.pc-services {
    background-color: #fff;
}

.pc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pc-service-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f7f3;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pc-service-card:hover {
    background-color: #e8e5d8;
}

.pc-service-card i {
    font-size: 40px;
    color: #a68e68;
    margin-bottom: 20px;
}

.pc-service-card h4 {
    font-size: 22px;
    color: #5a482b;
    margin-bottom: 15px;
}

.pc-service-card p {
    color: #777;
}

/* 预约区域样式 */
.pc-booking {
    background: linear-gradient(rgba(90,72,43,0.8), rgba(90,72,43,0.8)), url('https://picsum.photos/id/430/1920/800') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.pc-booking .pc-section-title h2 {
    color: #fff;
}

.pc-booking .pc-section-title p {
    color: #e8e5d8;
}

.pc-booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 6px;
}

.pc-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.pc-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #5a482b;
    font-weight: 500;
}

.pc-form-group input, .pc-form-group select, .pc-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

.pc-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 联系方式样式 */
.pc-contact {
    background-color: #f9f7f3;
}

.pc-contact-content {
    display: flex;
    gap: 60px;
}

.pc-contact-info {
    flex: 1;
}

.pc-contact-info h3 {
    font-size: 28px;
    color: #5a482b;
    margin-bottom: 30px;
}

.pc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.pc-contact-item i {
    font-size: 24px;
    color: #a68e68;
    margin-top: 5px;
}

.pc-contact-item h4 {
    font-size: 20px;
    color: #555;
    margin-bottom: 8px;
}

.pc-contact-item p {
    color: #777;
    font-size: 16px;
}

.pc-contact-map {
    flex: 1;
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.pc-contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 页脚样式 */
footer {
    background-color: #5a482b;
    color: #e8e5d8;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

/* 页脚背景装饰 */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(166, 142, 104, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(166, 142, 104, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(166, 142, 104, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* 主页脚区域 */
.pc-footer-main {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #5a482b 0%, #4a3a22 100%);
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.pc-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 70px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.pc-footer-col {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 页脚Logo */
.pc-footer-logo {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pc-footer-logo h3 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.pc-footer-logo h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #a68e68 0%, #c8b38e 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.pc-footer-col:hover .pc-footer-logo h3::before {
    transform: scaleX(1);
    transform-origin: left;
}

.pc-footer-logo h3 span {
    color: #a68e68;
    position: relative;
    z-index: 2;
}

/* 页脚描述 */
.pc-footer-description {
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 1.8;
    color: #e8e5d8;
    flex: 1;
    position: relative;
    z-index: 2;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.pc-footer-col:hover .pc-footer-description {
    opacity: 1;
}

/* 页脚社交图标 */
.pc-footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.pc-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 19px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.pc-social-icon::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 ease;
}

.pc-social-icon:hover::before {
    left: 100%;
}

.pc-social-icon:hover {
    background: linear-gradient(135deg, #a68e68 0%, #c8b38e 100%);
    transform: translateY(-4px) scale(1.05);
    color: #fff;
    box-shadow: 0 8px 25px rgba(166, 142, 104, 0.4);
    border-color: transparent;
}

/* 页脚标题 */
.pc-footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #fff;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.pc-footer-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #a68e68 0%, #c8b38e 100%);
    border-radius: 2px;
    transform: scaleX(0.8);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pc-footer-col:hover .pc-footer-title::before {
    transform: scaleX(1);
}

.pc-footer-title::after {
    content: '';
    position: absolute;
    left: 75px;
    bottom: 1px;
    width: 20px;
    height: 4px;
    background: #a68e68;
    border-radius: 2px;
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease 0.1s;
}

.pc-footer-col:hover .pc-footer-title::after {
    transform: scaleX(1);
}

/* 页脚链接列表 */
.pc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.pc-footer-links li {
    margin-bottom: 18px;
    position: relative;
}

.pc-footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #a68e68 0%, transparent 100%);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.pc-footer-links li:hover::before {
    width: 100%;
}

.pc-footer-link {
    color: #d4cdbd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    z-index: 2;
}

.pc-footer-link:hover {
    color: #a68e68;
    padding-left: 12px;
}

.pc-footer-link::before {
    content: '➤';
    position: absolute;
    left: -20px;
    top: 0;
    color: #a68e68;
    transition: all 0.3s ease;
    font-size: 12px;
    opacity: 0;
    transform: translateX(10px);
}

.pc-footer-link:hover::before {
    left: -12px;
    opacity: 1;
    transform: translateX(0);
}

/* 页脚联系方式 */
.pc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.pc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 8px;
    transition: padding-left 0.3s ease;
}

.pc-contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, #a68e68 0%, #c8b38e 100%);
    border-radius: 1.5px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.pc-contact-item:hover::before {
    transform: scaleY(1);
}

.pc-contact-item:hover {
    padding-left: 15px;
}

.pc-contact-item i {
    font-size: 20px;
    color: #a68e68;
    margin-top: 3px;
    min-width: 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pc-contact-item:hover i {
    transform: scale(1.2) translateX(5px);
    color: #c8b38e;
}

.pc-contact-item span {
    color: #e8e5d8;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.pc-contact-item:hover span {
    color: #fff;
}

/* 页脚分隔线 */
.pc-footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(166, 142, 104, 0.3) 50%, transparent 100%);
    margin: 0;
    position: relative;
    z-index: 2;
}

.pc-footer-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #a68e68 0%, #c8b38e 100%);
    border-radius: 2px;
    opacity: 0.7;
}

/* 底部版权区域 */
.pc-footer-bottom {
    padding: 35px 0;
    background: linear-gradient(135deg, #4a3a22 0%, #3d301d 100%);
    border-top: 1px solid rgba(166, 142, 104, 0.1);
    position: relative;
    z-index: 2;
}

.pc-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* 版权信息 */
.pc-copyright {
    color: #e8e5d8;
    font-size: 14px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.pc-copyright:hover {
    color: #fff;
}

.pc-copyright::before {
    content: '©';
    margin-right: 5px;
    color: #a68e68;
    font-weight: 600;
}

/* 法律链接 */
.pc-legal-links {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.pc-legal-link {
    color: #e8e5d8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-weight: 500;
}

.pc-legal-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a68e68 0%, #c8b38e 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.pc-legal-link:hover {
    color: #a68e68;
    padding: 5px 8px;
}

.pc-legal-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.pc-legal-separator {
    color: rgba(232, 229, 216, 0.5);
    font-size: 12px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.pc-legal-links:hover .pc-legal-separator {
    color: rgba(232, 229, 216, 0.8);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .pc-footer-content {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .pc-footer-main {
        padding: 80px 0 40px;
    }
    
    .pc-footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    
    .pc-footer-logo h3 {
        font-size: 32px;
    }
    
    .pc-footer-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .pc-footer-main {
        padding: 60px 0 30px;
    }
    
    .pc-footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .pc-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .pc-legal-links {
        justify-content: center;
        gap: 15px;
    }
    
    .pc-footer-logo h3 {
        font-size: 28px;
    }
    
    .pc-footer-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .pc-contact-item {
        margin-bottom: 20px;
    }
    
    .pc-footer-links li {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .pc-footer-main {
        padding: 50px 0 25px;
    }
    
    .pc-footer-bottom {
        padding: 25px 0;
    }
    
    .pc-footer-logo h3 {
        font-size: 24px;
    }
    
    .pc-legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .pc-legal-separator {
        display: none;
    }
    
    .pc-copyright {
        font-size: 13px;
    }
}

/* 服务项目板块样式 */
.pc-service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.pc-service-item-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
}

.pc-service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.pc-service-item-img {
    height: 220px;
    overflow: hidden;
}

.pc-service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pc-service-item-card:hover .pc-service-item-img img {
    transform: scale(1.05);
}

.pc-service-item-content {
    padding: 30px;
}

.pc-service-item-content h3 {
    font-size: 22px;
    color: #5a482b;
    margin-bottom: 15px;
    font-weight: 600;
}

.pc-service-item-content > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pc-service-item-content > div span:first-child {
    font-size: 20px;
    color: #a68e68;
    font-weight: 700;
}

.pc-service-item-content > div span:last-child {
    background-color: #f9f7f3;
    color: #888;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.pc-service-item-content ul {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    list-style: none;
}

.pc-service-item-content ul li {
    margin-bottom: 8px;
}

.pc-service-item-content .pc-btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* 服务优势板块样式 */
.pc-service-features {
    background-color: #f9f7f3;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 70px;
}

.pc-service-features h3 {
    font-size: 24px;
    color: #5a482b;
    margin-bottom: 30px;
    text-align: center;
}

.pc-service-features > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pc-service-features > div > div {
    text-align: center;
}

.pc-service-features > div > div i {
    font-size: 40px;
    color: #a68e68;
    margin-bottom: 15px;
}

.pc-service-features > div > div h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.pc-service-features > div > div p {
    color: #777;
}

/* 茶艺师板块样式 */
.pc-tea-artists {
    background-color: #fff;
    padding: 80px 0;
}

.pc-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pc-artist-card {
    background-color: #f9f7f3;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.pc-artist-card > div:first-child {
    height: 300px;
    overflow: hidden;
}

.pc-artist-card > div:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-artist-card > div:last-child {
    padding: 0 20px;
}

.pc-artist-card h3 {
    font-size: 20px;
    color: #5a482b;
    margin: 20px 0 10px;
}

.pc-artist-card p:first-of-type {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.pc-artist-card > div:last-child > div {
    color: #ffc107;
    margin-bottom: 15px;
}

.pc-artist-card p:last-of-type {
    color: #777;
    line-height: 1.6;
}

/* 品茶工作室环境板块样式 */
.pc-environment-features > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.pc-environment-features > div > div {
    text-align: center;
}

.pc-environment-features > div > div i {
    font-size: 36px;
    margin-bottom: 15px;
}

.pc-environment-features > div > div h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.pc-environment-features > div > div p {
    opacity: 0.9;
    font-size: 14px;
}

/* 茶艺师服务承诺样式 */
.pc-artist-promise {
    text-align: center;
    background-color: #5a482b;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.pc-artist-promise h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.pc-artist-promise p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* 品茶工作室环境板块样式 */
.pc-studio-environment {
    background-color: #fff;
    padding: 80px 0;
}

.pc-environment-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.pc-environment-gallery > div {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.pc-environment-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.pc-environment-gallery > div > div {
    padding: 15px;
    background-color: #fff;
}

.pc-environment-gallery h4 {
    font-size: 16px;
    color: #5a482b;
    margin-bottom: 5px;
}

.pc-environment-gallery p {
    color: #777;
    font-size: 14px;
}

/* 工作室环境特色样式 */
.pc-environment-features {
    background: linear-gradient(rgba(90,72,43,0.85), rgba(90,72,43,0.85)), url('https://picsum.photos/id/458/1920/600') center/cover no-repeat;
    color: #fff;
    padding: 50px;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .pc-about-content, .pc-contact-content {
        flex-direction: column;
    }

    /* 平板端茶品布局 */
    .pc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pc-hero-content h1 {
        font-size: 45px;
    }

    .pc-section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .pc-about-content, .pc-contact-content {
        flex-direction: column;
    }

    /* 平板端茶品布局 */
    .pc-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pc-hero-content h1 {
        font-size: 45px;
    }

    .pc-section-title h2 {
        font-size: 30px;
    }
    
    .pc-mobile-menu-toggle {
        display: flex;
    }
    
    .pc-nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.99);
        box-shadow: -3px 0 15px rgba(0, 0, 0, 0.15);
        width: 250px;
        height: calc(100vh - 80px);
        padding: 30px 20px;
        gap: 20px;
        transform: translateX(100%);
        overflow-y: auto;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    
    .pc-nav-menu.active {
        transform: translateX(0);
    }
    
    .pc-nav-menu li a {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .pc-nav-menu ul {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 10px;
        margin-left: 20px;
        padding: 10px;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    /* 平板端茶品布局 */
    .pc-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 平板端服务项目布局 */
    .pc-service-items-grid {
        grid-template-columns: 1fr;
    }

    /* 平板端茶艺师布局 */
    .pc-artists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-hero-content h1 {
        font-size: 36px;
    }

    .pc-hero-content p {
        font-size: 18px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .pc-mobile-menu-toggle {
        width: 30px;
        height: 24px;
    }
    
    .pc-nav-menu {
        width: 200px;
        top: 70px;
    }

    /* 移动端茶品布局 */
    .pc-products-grid {
        grid-template-columns: 1fr;
    }

    /* 移动端茶艺师布局 */
    .pc-artists-grid {
        grid-template-columns: 1fr;
    }

    .pc-hero {
        height: 80vh;
    }

    .pc-hero-content h1 {
        font-size: 28px;
    }

    .pc-booking-form {
        padding: 20px;
    }
    
    .pc-navbar {
        padding: 15px 0;
    }
    
    .pc-logo {
        font-size: 24px;
    }
}
