/* 
Theme Name: 上海品茶网
Theme URI: https://www.shanghaishuipin.com
Author: 上海品茶网
Description: 2026年百度SEO优化版上海品茶网主题 - 基于ERNIE 5.0算法、GEO向量、EEAT原则打造的上海茶领域权威信息源
Version: 2.0.0
*/

/* 性能优化 */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* 优化图片渲染 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 优化滚动性能 */
html {
    will-change: scroll-position;
}

/* 禁用不必要的动画 */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #A0522D;
    --secondary-color: #D2691E;
    --accent-color: #32CD32;
    --text-primary: #2D1810;
    --text-secondary: #5C4033;
    --text-light: #8B7355;
    --bg-light: #FDF9F5;
    --bg-white: #FFFFFF;
    --border-color: #E8DFD6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.shpcw-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    /* 优化容器渲染 */
    contain: layout style;
}

/* Icons - Using Font Awesome classes */
[class^="icon-"]::before,
[class*=" icon-"]::before {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
}

.icon-phone::before { content: '\f095'; }
.icon-mail::before { content: '\f0e0'; }
.icon-clock::before { content: '\f017'; }
.icon-map::before { content: '\f041'; }
.icon-star::before { content: '\f005'; }
.icon-star-half::before { content: '\f089'; }
.icon-cert::before { content: '\f0a3'; }
.icon-shield::before { content: '\f132'; }
.icon-heart::before { content: '\f004'; }
.icon-briefcase::before { content: '\f0b1'; }
.icon-users::before { content: '\f0c0'; }
.icon-book::before { content: '\f02d'; }
.icon-question::before { content: '\f128'; }
.icon-down::before { content: '\f107'; }
.icon-up::before { content: '\f106'; }
.icon-send::before { content: '\f1d8'; }
.icon-info::before { content: '\f05a'; }
.icon-wechat::before { content: '\f1d7'; }
.icon-weibo::before { content: '\f18a'; }

/* Top Bar */
.shpcw-top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 0;
}

.shpcw-top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.shpcw-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.shpcw-trust-badge i {
    color: var(--accent-color);
}

.shpcw-contact-quick {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shpcw-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
}

.shpcw-phone:hover {
    color: var(--secondary-color);
}

/* Header Navigation */
.shpcw-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.shpcw-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.shpcw-logo-link {
    display: block;
}

.shpcw-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.shpcw-logo-sub {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.shpcw-nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.shpcw-nav-menu a {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

.shpcw-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.shpcw-nav-menu a:hover::after,
.shpcw-nav-menu a.active::after {
    width: 100%;
}

.shpcw-cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white !important;
    padding: 12px 28px !important;
    border-radius: 30px;
    font-weight: 600 !important;
}

.shpcw-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.shpcw-cta-btn::after {
    display: none !important;
}

.shpcw-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.shpcw-mobile-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.shpcw-hero {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.96) 0%, rgba(107, 52, 16, 0.98) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.shpcw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
}

.shpcw-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.shpcw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.shpcw-hero-badge i {
    color: var(--accent-color);
}

.shpcw-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.shpcw-hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 640px;
}

/* Trust Stats */
.shpcw-trust-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.shpcw-stat-item {
    text-align: center;
}

.shpcw-stat-num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.shpcw-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.shpcw-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.shpcw-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.shpcw-btn-primary,
.shpcw-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 600;
    transition: var(--transition);
}

.shpcw-btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E07020 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(210, 105, 30, 0.35);
}

.shpcw-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(210, 105, 30, 0.45);
}

.shpcw-btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.shpcw-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.shpcw-hero-image {
    position: relative;
}

.shpcw-hero-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.shpcw-hero-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Section Header */
.shpcw-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.shpcw-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(210, 105, 30, 0.1) 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.shpcw-section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.shpcw-section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.shpcw-services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.shpcw-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.shpcw-service-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.shpcw-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.shpcw-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.shpcw-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.shpcw-service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.shpcw-service-features {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shpcw-service-features li {
    font-size: 13px;
    color: var(--text-light);
}

.shpcw-service-features li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 6px;
    font-weight: 600;
}

.shpcw-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.shpcw-service-link:hover {
    color: var(--secondary-color);
}

/* Teams Section */
.shpcw-teams {
    padding: 80px 0;
    background-color: white;
}

.shpcw-teams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.shpcw-team-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.shpcw-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.shpcw-team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: var(--shadow-sm);
}

.shpcw-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shpcw-team-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.shpcw-team-title {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.shpcw-team-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.shpcw-team-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.shpcw-team-tags span {
    background: rgba(139, 69, 19, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

/* Locations Section */
.shpcw-locations {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.shpcw-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shpcw-location-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shpcw-location-item:hover {
    box-shadow: var(--shadow-md);
}

.shpcw-location-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.shpcw-location-item ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.shpcw-location-item li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.shpcw-location-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Tea Section */
.shpcw-tea {
    padding: 80px 0;
    background-color: white;
}

.shpcw-tea-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.shpcw-tea-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shpcw-tea-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.shpcw-tea-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.shpcw-tea-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shpcw-tea-card:hover .shpcw-tea-img img {
    transform: scale(1.08);
}

.shpcw-tea-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #228B22 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.shpcw-tea-info {
    padding: 24px;
}

.shpcw-tea-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.shpcw-tea-origin {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.shpcw-tea-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Knowledge Section */
.shpcw-knowledge {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.shpcw-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.shpcw-reviews-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
}

.shpcw-culture-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 36px;
}

.shpcw-ugc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.shpcw-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.shpcw-knowledge-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.shpcw-knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.shpcw-knowledge-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.shpcw-knowledge-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.shpcw-knowledge-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-light);
}

.shpcw-knowledge-meta span:first-child {
    color: var(--primary-color);
    font-weight: 500;
}

/* Reviews Section */
.shpcw-reviews {
    padding: 80px 0;
    background-color: white;
}

.shpcw-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shpcw-review-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.shpcw-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.shpcw-review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    color: rgba(139, 69, 19, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.shpcw-review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.shpcw-review-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.shpcw-review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.shpcw-review-author span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.shpcw-review-date {
    font-size: 13px;
    color: var(--text-light);
}

/* About Section */
.shpcw-about {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.shpcw-about-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.shpcw-about-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.shpcw-about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.shpcw-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.shpcw-about-feature {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.shpcw-about-feature i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.shpcw-about-feature h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.shpcw-about-feature p {
    font-size: 13px;
    color: var(--text-light);
}

.shpcw-about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.shpcw-about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Contact Section */
.shpcw-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.shpcw-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.shpcw-contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.shpcw-contact-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.shpcw-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shpcw-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shpcw-contact-item i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary-color);
}

.shpcw-contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.shpcw-contact-item a,
.shpcw-contact-item span {
    font-size: 16px;
}

.shpcw-contact-item a:hover {
    color: var(--secondary-color);
}

.shpcw-contact-form-wrap {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.shpcw-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shpcw-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.shpcw-form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.shpcw-form-group label span {
    color: #E74C3C;
}

.shpcw-form-group input,
.shpcw-form-group select,
.shpcw-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.shpcw-form-group input:focus,
.shpcw-form-group select:focus,
.shpcw-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

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

.shpcw-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 8px;
}

.shpcw-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.4);
}

/* FAQ Section */
.shpcw-faq {
    padding: 80px 0;
    background-color: white;
}

.shpcw-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.shpcw-faq-item {
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: var(--transition);
}

.shpcw-faq-item:hover {
    border-color: var(--primary-color);
}

.shpcw-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--bg-light);
    transition: var(--transition);
    gap: 16px;
}

.shpcw-faq-question:hover {
    background: rgba(139, 69, 19, 0.08);
}

.shpcw-faq-question i:first-child {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.shpcw-faq-question span {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.shpcw-faq-icon {
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.shpcw-faq-item.active .shpcw-faq-icon {
    transform: rotate(180deg);
}

.shpcw-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.shpcw-faq-item.active .shpcw-faq-answer {
    max-height: 300px;
    padding: 20px 24px;
}

.shpcw-faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
.shpcw-footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
}

.shpcw-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shpcw-footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.shpcw-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.shpcw-footer-social {
    display: flex;
    gap: 12px;
}

.shpcw-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.shpcw-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.shpcw-footer-links h4,
.shpcw-footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.shpcw-footer-links ul,
.shpcw-footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shpcw-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.shpcw-footer-links a:hover {
    color: white;
}

.shpcw-footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.shpcw-footer-contact i {
    width: 20px;
    color: var(--secondary-color);
}

.shpcw-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.shpcw-footer-bottom-left p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.shpcw-footer-legal {
    margin-top: 8px;
    display: flex;
    gap: 16px;
}

.shpcw-footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.shpcw-footer-legal a:hover {
    color: white;
}

.shpcw-footer-beian {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Back to Top */
.shpcw-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    transition: var(--transition);
}

.shpcw-back-top.show {
    display: flex;
}

.shpcw-back-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .shpcw-hero-inner,
    .shpcw-about-inner,
    .shpcw-contact-inner {
        grid-template-columns: 1fr;
    }
    
    .shpcw-hero-image,
    .shpcw-about-image {
        order: -1;
    }
    
    .shpcw-services-grid,
    .shpcw-teams-grid,
    .shpcw-locations-grid,
    .shpcw-tea-grid,
    .shpcw-knowledge-grid,
    .shpcw-footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shpcw-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shpcw-nav-menu {
        display: none;
    }
    
    .shpcw-mobile-btn {
        display: flex;
    }
    
    .shpcw-top-info {
        flex-direction: column;
        text-align: center;
    }
    
    .shpcw-contact-quick {
        flex-direction: column;
        gap: 8px;
    }
    
    .shpcw-hero {
        padding: 50px 0;
    }
    
    .shpcw-hero-title {
        font-size: 36px;
    }
    
    .shpcw-section-title {
        font-size: 32px;
    }
    
    .shpcw-trust-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .shpcw-stat-divider {
        display: none;
    }
    
    .shpcw-services-grid,
    .shpcw-teams-grid,
    .shpcw-locations-grid,
    .shpcw-tea-grid,
    .shpcw-knowledge-grid,
    .shpcw-about-features {
        grid-template-columns: 1fr;
    }
    
    .shpcw-form-row {
        grid-template-columns: 1fr;
    }
    
    .shpcw-contact-form-wrap {
        padding: 28px 20px;
    }
    
    .shpcw-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .shpcw-footer-social {
        justify-content: center;
    }
    
    .shpcw-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .shpcw-footer-beian {
        flex-direction: column;
        gap: 8px;
    }
    
    .shpcw-section-title {
        font-size: 28px;
    }
}

/* ==================== NEW SECTIONS ==================== */

/* Map Section - 茶馆地图 */
.shpcw-map-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.shpcw-district-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.shpcw-filter-btn {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.shpcw-filter-btn:hover,
.shpcw-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.shpcw-teahouse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.shpcw-teahouse-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shpcw-teahouse-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.shpcw-teahouse-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.shpcw-teahouse-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shpcw-teahouse-card:hover .shpcw-teahouse-img img {
    transform: scale(1.08);
}

.shpcw-teahouse-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.shpcw-teahouse-info {
    padding: 24px;
}

.shpcw-teahouse-info h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.shpcw-teahouse-location {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shpcw-teahouse-location::before {
    content: '📍';
}

.shpcw-teahouse-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.shpcw-teahouse-tags span {
    background: rgba(139, 69, 19, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.shpcw-teahouse-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Calendar Section - 茶事日历 */
.shpcw-calendar-section {
    padding: 100px 0;
    background-color: white;
}

.shpcw-calendar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.shpcw-event-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    gap: 24px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.shpcw-event-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.shpcw-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    color: white;
}

.shpcw-event-day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.shpcw-event-month {
    font-size: 13px;
    margin-top: 4px;
}

.shpcw-event-info {
    flex: 1;
}

.shpcw-event-type {
    display: inline-block;
    background: rgba(139, 69, 19, 0.12);
    color: var(--primary-color);
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.shpcw-event-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.shpcw-event-time {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.shpcw-event-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.shpcw-event-status {
    display: flex;
    gap: 10px;
    align-items: center;
}

.shpcw-hot-tag,
.shpcw-new-tag,
.shpcw-premium-tag {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.shpcw-hot-tag {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: white;
}

.shpcw-new-tag {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: white;
}

.shpcw-premium-tag {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

/* Encyclopedia Section - 茶知识百科 */
.shpcw-encyclopedia-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.shpcw-knowledge-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.shpcw-knowledge-cat {
    padding: 12px 28px;
    border-radius: 25px;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.shpcw-knowledge-cat:hover,
.shpcw-knowledge-cat.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.shpcw-knowledge-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shpcw-knowledge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.shpcw-knowledge-img {
    height: 180px;
    overflow: hidden;
}

.shpcw-knowledge-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shpcw-knowledge-card:hover .shpcw-knowledge-img img {
    transform: scale(1.08);
}

.shpcw-knowledge-info {
    padding: 24px;
}

.shpcw-knowledge-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(210, 105, 30, 0.1) 100%);
    color: var(--primary-color);
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.shpcw-knowledge-info h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.shpcw-knowledge-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.shpcw-knowledge-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-light);
}

/* Reviews Section - 茶叶深度评测 */
.shpcw-reviews-section {
    padding: 100px 0;
    background-color: white;
}

.shpcw-reviews-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.shpcw-review-large {
    background: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.shpcw-review-main {
    display: flex;
    flex-direction: column;
}

.shpcw-review-main img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.shpcw-review-content {
    padding: 32px;
}

.shpcw-review-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.shpcw-review-large h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.shpcw-rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.shpcw-rating-stars span:first-child {
    color: #FFD700;
    font-size: 18px;
}

.shpcw-rating-score {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.shpcw-review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.shpcw-review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

.shpcw-reviews-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shpcw-review-small {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.shpcw-review-small:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
}

.shpcw-review-small img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.shpcw-review-small-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.shpcw-review-small-info .shpcw-rating-stars {
    margin-bottom: 6px;
}

.shpcw-review-small-info .shpcw-rating-stars span:first-child {
    font-size: 14px;
}

.shpcw-review-small-info .shpcw-rating-score {
    font-size: 15px;
}

.shpcw-review-small-info span:last-child {
    font-size: 13px;
    color: var(--text-light);
}

/* Culture Section - 茶艺文化专栏 */
.shpcw-culture-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.shpcw-culture-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.shpcw-culture-featured {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.shpcw-culture-featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.shpcw-culture-featured img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.shpcw-culture-featured-info {
    padding: 32px;
}

.shpcw-culture-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E07020 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.shpcw-culture-featured-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.shpcw-culture-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.shpcw-culture-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.shpcw-culture-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.shpcw-culture-author div span:first-child {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.shpcw-culture-author div span:last-child {
    font-size: 13px;
    color: var(--text-light);
}

.shpcw-culture-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shpcw-culture-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shpcw-culture-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.shpcw-culture-card img {
    width: 140px;
    height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}

.shpcw-culture-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shpcw-culture-card-info .shpcw-culture-tag {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.shpcw-culture-card-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.shpcw-culture-meta {
    font-size: 13px;
    color: var(--text-light);
}

/* FAQ Section - 品茶问答 */
.shpcw-faq-section {
    padding: 80px 0;
    background-color: white;
}

.shpcw-faq-grid {
    max-width: 850px;
    margin: 0 auto;
}

.shpcw-faq-item {
    background: var(--bg-light);
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.shpcw-faq-item:hover {
    border-color: var(--primary-color);
}

.shpcw-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    background: white;
    transition: var(--transition);
}

.shpcw-faq-question:hover {
    background: rgba(139, 69, 19, 0.05);
}

.shpcw-faq-question i:first-child {
    font-size: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.shpcw-faq-question span {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.shpcw-faq-icon {
    font-size: 18px;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.shpcw-faq-item.active .shpcw-faq-icon {
    transform: rotate(180deg);
}

.shpcw-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.shpcw-faq-item.active .shpcw-faq-answer {
    max-height: 400px;
    padding: 24px;
}

.shpcw-faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.shpcw-faq-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-light);
}

.shpcw-ask-question {
    text-align: center;
    margin-top: 40px;
}

.shpcw-ask-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.shpcw-ask-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.4);
}

/* UGC Section - 茶友真实点评 */
.shpcw-ugc-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.shpcw-ugc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shpcw-ugc-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shpcw-ugc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.shpcw-ugc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.shpcw-ugc-header img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.shpcw-ugc-user {
    flex: 1;
}

.shpcw-ugc-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.shpcw-ugc-time {
    font-size: 13px;
    color: var(--text-light);
}

.shpcw-ugc-rating {
    color: #FFD700;
    font-size: 16px;
}

.shpcw-ugc-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.shpcw-ugc-images {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.shpcw-ugc-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.shpcw-ugc-actions {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
}

.shpcw-ugc-actions span {
    cursor: pointer;
    transition: var(--transition);
}

.shpcw-ugc-actions span:hover {
    color: var(--primary-color);
}

.shpcw-share-experience {
    text-align: center;
    margin-top: 40px;
}

.shpcw-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E07020 100%);
    color: white;
    border: none;
    border-radius: 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.shpcw-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(210, 105, 30, 0.4);
}

/* Guide Section - 2026品茶指南 */
.shpcw-guide-section {
    padding: 80px 0;
    background-color: white;
}

.shpcw-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.shpcw-guide-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 24px;
    padding: 32px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.shpcw-guide-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.shpcw-guide-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.shpcw-guide-icon span {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.shpcw-guide-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.shpcw-guide-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.shpcw-guide-list {
    list-style: none;
}

.shpcw-guide-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.shpcw-guide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 16px;
}

/* Baijiahao Section - 联动百家号 */
.shpcw-baijiahao-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #29323C 0%, #485563 100%);
    color: white;
}

.shpcw-baijiahao-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.shpcw-baijiahao-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.shpcw-baijiahao-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.shpcw-baijiahao-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.shpcw-baijiahao-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.shpcw-baijiahao-stats .shpcw-stat-item {
    text-align: left;
}

.shpcw-baijiahao-stats .shpcw-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.shpcw-baijiahao-stats .shpcw-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.shpcw-baijiahao-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #E07020 100%);
    color: white;
    border: none;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.shpcw-baijiahao-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(210, 105, 30, 0.4);
}

.shpcw-baijiahao-qrcode {
    display: flex;
    justify-content: center;
}

.shpcw-qrcode-placeholder {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.shpcw-qrcode-placeholder span:first-child {
    font-size: 40px;
}

.shpcw-qrcode-placeholder span:last-child {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* New Responsive Styles */
@media (max-width: 1400px) {
    .shpcw-teahouse-grid,
    .shpcw-ugc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shpcw-calendar-grid,
    .shpcw-reviews-grid,
    .shpcw-culture-grid,
    .shpcw-guide-grid,
    .shpcw-baijiahao-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shpcw-teahouse-grid,
    .shpcw-calendar-grid,
    .shpcw-ugc-grid {
        grid-template-columns: 1fr;
    }
    
    .shpcw-event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .shpcw-reviews-side {
        gap: 16px;
    }
    
    .shpcw-culture-grid {
        gap: 20px;
    }
    
    .shpcw-culture-card {
        flex-direction: column;
    }
    
    .shpcw-culture-card img {
        width: 100%;
        height: 180px;
    }
    
    .shpcw-baijiahao-stats {
        flex-direction: column;
        gap: 20px;
    }
}
