
/* ===== 内联自 styles_pc.css ===== */
/* ==========================================================================
   星芒圈 (XingMangQuan) PC Web App Style Sheet - V1.0
   ========================================================================== */

:root {
    --primary-purple: #9E7BFF;
    --primary-dark-purple: #7C4DFF;
    --primary-light-purple: #F3EFFF;
    --accent-pink: #FF80AB;
    --accent-light-pink: #FFF0F6;
    
    --bg-primary: #F8F7FC;
    --bg-card: #FFFFFF;
    --text-main: #2C2A38;
    --text-muted: #8F8C9F;
    --border-color: #EDE8F5;
    
    --shadow-soft: 0 12px 30px rgba(158, 123, 255, 0.08);
    --shadow-card: 0 6px 20px rgba(158, 123, 255, 0.05);
    --shadow-hover: 0 16px 40px rgba(124, 77, 255, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

a, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Outfit', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #D1C4E9;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

/* ==========================================================================
   PC Header & Navigation
   ========================================================================== */

.pc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(237, 232, 245, 0.6);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(158, 123, 255, 0.03);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
}

.brand-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(124, 77, 255, 0.24);
}

.logo-star-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 4;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.logo-text {
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-divider {
    width: 1px;
    height: 22px;
    background: #E1DDEB;
    margin: 0 2px;
}

.logo-slogan {
    font-size: 13px;
    line-height: 1;
    color: #8A879A;
    font-weight: 700;
    white-space: nowrap;
}

.pc-nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-shrink: 0;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #555266;
    text-decoration: none;
    padding: 8px 8px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-dark-purple);
    background: var(--primary-light-purple);
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-search-box {
    position: relative;
    width: 240px;
}

.pc-search-input {
    width: 100%;
    height: 38px;
    padding: 0 40px 0 15px;
    border-radius: 20px;
    border: 1.5px solid var(--border-color);
    background: #F5F3FA;
    font-size: 13px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-smooth);
}

.pc-search-input:focus {
    border-color: var(--primary-purple);
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(158, 123, 255, 0.15);
}

.pc-search-icon-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.pc-search-icon-btn:hover {
    background: var(--primary-dark-purple);
}

.search-magnifier-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-contact-btn {
    background: linear-gradient(135deg, var(--accent-pink) 0%, #FF4081 100%);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    min-width: 106px;
    height: 42px;
    padding: 0 18px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.2);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.cta-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 64, 129, 0.3);
}

/* ==========================================================================
   Search Results
   ========================================================================== */

.search-results-page {
    padding: 44px 0 70px;
}

.search-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    padding: 30px 34px;
    background: #FFFFFF;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.search-results-kicker {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 13px;
    background: var(--primary-light-purple);
    color: var(--primary-dark-purple);
    font-size: 12px;
    font-weight: 800;
}

.search-results-head h1 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 8px;
    color: var(--text-main);
}

.search-results-head p {
    font-size: 14px;
    color: var(--text-muted);
}

.search-results-form {
    position: relative;
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-results-form input {
    width: 100%;
    height: 48px;
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 0 18px;
    background: #F7F4FC;
    outline: none;
    color: var(--text-main);
}

.search-results-form input:focus {
    border-color: var(--primary-purple);
    background: #FFFFFF;
}

.search-results-form button {
    height: 48px;
    min-width: 86px;
    border: none;
    border-radius: 24px;
    color: #FFFFFF;
    background: var(--primary-purple);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(124, 77, 255, 0.18);
}

.search-result-section {
    margin-bottom: 42px;
}

.search-section-count {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.search-result-grid {
    display: grid;
    gap: 24px;
}

.search-shop-grid,
.search-guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.search-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pc-guide-card-desc {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}

.search-empty-block {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #DDD5EF;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--text-muted);
    font-weight: 700;
}

/* ==========================================================================
   Layout Containers & App View Routing
   ========================================================================== */

.pc-main-wrapper {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.app-view {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.app-view.active {
    display: block;
}

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

.pc-centered-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 80px;
}

/* ==========================================================================
   Home View: Carousel & Category Grid
   ========================================================================== */

.home-cherry-bg-pc {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 360px;
    background: linear-gradient(180deg, #EFEBF9 0%, var(--bg-primary) 100%);
    z-index: -1;
    opacity: 0.8;
}

.home-carousel-area {
    width: 100%;
    margin-bottom: 35px;
    position: relative;
}

.carousel-pc-container {
    width: 100%;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    background: #FFFFFF;
}

.carousel-pc-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-pc-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    cursor: pointer;
    border: none;
    background: transparent;
    text-align: left;
    font-family: inherit;
    color: inherit;
}

.carousel-pc-info {
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.carousel-pc-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-dark-purple);
    background: var(--primary-light-purple);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.carousel-pc-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 10px;
}

.carousel-pc-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.carousel-pc-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.carousel-pc-visual {
    width: 320px;
    height: 220px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Carousel Control Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.carousel-arrow:hover {
    background: var(--primary-dark-purple);
    color: #FFFFFF;
    border-color: var(--primary-dark-purple);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(124, 77, 255, 0.35);
}

.carousel-arrow-prev { left: 24px; }
.carousel-arrow-next { right: 24px; }

.carousel-arrow-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-pc-dots {
    position: absolute;
    bottom: 20px;
    left: 60px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-pc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1C4E9;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    padding: 0;
}

.carousel-pc-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-dark-purple);
}

/* PC Category Ribbon Layout */
.pc-categories-ribbon {
    width: 100%;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
    margin-bottom: 40px;
}

.category-pc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-pc-item:hover {
    transform: translateY(-4px);
}

.category-pc-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.category-pc-icon-box svg {
    width: 26px;
    height: 26px;
}

.category-pc-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

/* Colors for icon boxes */
.c-dermatology { background: #EDE7F6; color: #7C4DFF; }
.c-hair { background: #E3F2FD; color: #1E88E5; }
.c-cafe { background: #E8F5E9; color: #43A047; }
.c-lodging { background: #FFF3E0; color: #FB8C00; }
.c-food { background: #FCE4EC; color: #EC407A; }
.c-color { background: #E0F7FA; color: #00ACC1; }
.c-makeup { background: #F3E5F5; color: #8E24AA; }
.c-delivery { background: #E0F2F1; color: #009688; }

.category-pc-item:hover .category-pc-icon-box {
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.15);
}

/* ==========================================================================
   Section Headers & Shared Grids
   ========================================================================== */

.section-pc-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-dark-purple);
    padding-left: 15px;
}

.section-pc-title-bar h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
}

.section-pc-more-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.section-pc-more-btn:hover {
    color: var(--primary-dark-purple);
}

/* Grid specifications */
.grid-4-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.pc-list-page {
    padding: 34px 0 60px;
}

.pagination-pc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 6px 0 54px;
}

.pagination-pc a,
.pagination-pc span,
.pagination-pc strong {
    min-width: 80px;
    height: 36px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 800;
}

.pagination-pc a {
    color: #FFFFFF;
    background: var(--primary-dark-purple);
    box-shadow: 0 8px 18px rgba(124, 77, 255, 0.18);
}

.pagination-pc span {
    color: var(--text-muted);
    background: #F3F0FA;
}

.pagination-pc strong {
    color: var(--primary-dark-purple);
    background: #FFFFFF;
    border: 1px solid var(--border-color);
}

.pc-content-detail-page {
    padding: 34px 0 70px;
}

.content-detail-shell {
    max-width: 880px;
    margin: 0 auto;
}

.content-detail-hero {
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
    position: relative;
}

.content-detail-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 42px;
    color: #FFFFFF;
    background: linear-gradient(180deg, rgba(26, 22, 40, 0.08) 28%, rgba(26, 22, 40, 0.74) 100%);
}

.content-detail-kicker {
    width: fit-content;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 8px;
    background: var(--accent-pink);
    margin-bottom: 14px;
}

.content-detail-overlay h1 {
    max-width: 720px;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.28;
    margin-bottom: 12px;
}

.content-detail-overlay p {
    max-width: 680px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.detail-body-card {
    margin-top: 22px;
    padding: 28px 30px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.55);
}

.detail-body-card h2 {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 12px;
}

.detail-body-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-muted);
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-dark-purple);
    background: var(--primary-light-purple);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.detail-medical-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #FFF5F9;
    color: #B23A68;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

.detail-link-list {
    display: grid;
    gap: 12px;
}

.detail-link-list a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: #FAF9FD;
    color: var(--text-main);
    font-weight: 800;
}

.detail-link-list em {
    font-style: normal;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
}

.article-detail-page {
    padding: 36px 0 76px;
    background: #FAF8FE;
}

.article-detail-back-link {
    display: inline-flex;
    align-items: center;
    margin: 0 0 18px 8px;
    color: #8A8798;
    font-size: 13px;
    font-weight: 800;
}

.article-detail-back-link::before {
    content: "";
    width: 7px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 8px;
}

.article-detail-card {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 42px 48px;
    border-radius: 24px;
    background: #FFFFFF;
    border: 1px solid rgba(237, 232, 245, 0.75);
    box-shadow: 0 18px 46px rgba(124, 77, 255, 0.08);
}

.article-detail-head {
    padding-bottom: 22px;
    margin-bottom: 28px;
    border-bottom: 1px dashed #E4DDF3;
}

.article-detail-head h1 {
    color: #2C2A38;
    font-size: 24px;
    line-height: 1.42;
    font-weight: 900;
    margin-bottom: 10px;
}

.article-detail-head p {
    color: #7D7A8C;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.article-detail-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #8B879A;
    font-size: 12px;
    font-weight: 700;
}

.article-detail-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.article-detail-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 8px;
    color: #F25F93;
    background: #FFF0F6;
    font-weight: 900;
}

.article-rich-body {
    color: #363341;
    font-size: 15px;
    line-height: 1.9;
}

.article-content-panel {
    padding: 22px 22px 28px;
    border-radius: 22px;
    border: 1px solid #EFEAF8;
    background: #FFFFFF;
    box-shadow: 0 10px 28px rgba(124, 77, 255, 0.05);
}

.article-rich-body h2,
.article-rich-body h3 {
    color: #2C2A38;
    font-weight: 900;
    line-height: 1.45;
    margin: 28px 0 12px;
}

.article-rich-body h2 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.article-rich-body h2::before {
    content: "";
    flex: 0 0 auto;
    width: 4px;
    height: 19px;
    border-radius: 4px;
    background: #8D5CFF;
}

.article-rich-body h3 {
    font-size: 17px;
}

.article-rich-body p,
.article-rich-body ul,
.article-rich-body ol {
    margin-bottom: 16px;
}

.article-rich-body img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    margin: 22px auto;
}

.article-rich-body table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 22px 0;
    overflow: hidden;
    border: 1px solid #EFEAF8;
    border-radius: 14px;
    color: #4A4658;
    font-size: 13px;
}

.article-rich-body th,
.article-rich-body td {
    padding: 13px 14px;
    border-bottom: 1px solid #EFEAF8;
    text-align: left;
    vertical-align: top;
}

.article-rich-body th {
    color: #6E4CFF;
    background: #F6F2FF;
    font-weight: 900;
}

.article-rich-body tr:last-child td {
    border-bottom: none;
}

.article-rich-body blockquote {
    margin: 24px 0;
    padding: 16px 18px;
    border-radius: 14px;
    border-left: 4px solid #8D5CFF;
    background: #F6F4FA;
    color: #5E5A6A;
    font-size: 13px;
    line-height: 1.8;
}

.article-medical-warning {
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #F4F5F9;
    color: #5E5A6A;
    font-size: 13px;
    line-height: 1.8;
    border-left: 4px solid #8D5CFF;
}

.article-medical-warning strong {
    display: block;
    color: #2C2A38;
    margin-bottom: 8px;
}

.article-medical-warning p {
    margin: 0;
}

.topic-detail-page {
    padding: 36px 0 86px;
    background: #FAF8FE;
}

.topic-detail-back-link {
    display: inline-flex;
    align-items: center;
    margin: 0 0 26px 8px;
    color: #8A8798;
    font-size: 13px;
    font-weight: 800;
}

.topic-detail-back-link::before {
    content: "";
    width: 7px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 8px;
}

.topic-detail-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 58px 60px 70px;
    border-radius: 26px;
    background: #FFFFFF;
    border: 1px solid rgba(237, 232, 245, 0.75);
    box-shadow: 0 18px 52px rgba(124, 77, 255, 0.08);
}

.topic-rich-body {
    padding: 24px 24px 32px;
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 12px 30px rgba(124, 77, 255, 0.05);
    color: #363341;
    font-size: 15px;
    line-height: 1.92;
}

.topic-rich-body h2,
.topic-related-panel h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #2C2A38;
    font-size: 22px;
    line-height: 1.42;
    font-weight: 900;
    margin: 0 0 18px;
}

.topic-rich-body h2::before,
.topic-related-panel h2::before {
    content: "";
    flex: 0 0 auto;
    width: 4px;
    height: 20px;
    border-radius: 4px;
    background: #8D5CFF;
}

.topic-rich-body h3 {
    color: #2C2A38;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 900;
    margin: 24px 0 12px;
}

.topic-rich-body p,
.topic-rich-body ul,
.topic-rich-body ol {
    margin-bottom: 16px;
}

.topic-rich-body img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    margin: 14px auto 22px;
}

.topic-rich-body strong {
    color: #2C2A38;
    font-weight: 900;
}

.topic-rich-body ol,
.topic-rich-body ul {
    padding-left: 22px;
}

.topic-related-panel {
    margin-top: 24px;
    padding: 24px;
    border-radius: 20px;
    background: #FAF9FD;
    border: 1px solid #EFEAF8;
}

/* ==========================================================================
   Card Components (Desktop styled)
   ========================================================================== */

/* PC Shop Card (Grid version) */
.pc-shop-grid-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pc-shop-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pc-shop-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pc-shop-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 11px;
    font-weight: 800;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(124, 77, 255, 0.3);
}

.pc-shop-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pc-shop-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 8px;
}

.pc-shop-card-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pc-shop-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    background: #FAF9FD;
    padding: 8px 12px;
    border-radius: 10px;
}

.pc-shop-card-time {
    font-size: 11px;
    font-weight: 700;
    color: #00BFA5;
}

.pc-shop-card-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-dark-purple);
}

.pc-shop-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

/* PC Guide Card */
.pc-guide-grid-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pc-guide-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pc-guide-grid-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pc-guide-card-img {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.pc-guide-card-body {
    padding: 16px;
    flex: 1;
    min-height: 146px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pc-guide-card-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-dark-purple);
    background: var(--primary-light-purple);
    padding: 2px 8px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.pc-guide-card-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pc-guide-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}

.pc-guide-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pc-guide-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.pc-guide-author-name {
    font-size: 11px;
    font-weight: 600;
    color: #6B687D;
}


/* PC Topic Card */
.pc-topic-grid-card {
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pc-topic-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pc-topic-banner-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.pc-topic-grid-card:hover .pc-topic-banner-img {
    transform: scale(1.05);
}

.pc-topic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.pc-topic-badge {
    font-size: 10px;
    font-weight: 800;
    color: #FFFFFF;
    background: var(--accent-pink);
    padding: 3px 8px;
    border-radius: 6px;
    align-self: flex-start;
    margin-bottom: 8px;
    box-shadow: 0 4px 8px rgba(255, 128, 171, 0.3);
}

.pc-topic-title {
    font-size: 16px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.pc-topic-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
}

/* ==========================================================================
   Shops View: Categories + List
   ========================================================================== */

/* PC 端店铺分类金刚区 (与移动端一致) */
.pc-shop-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
    padding: 44px 70px;
    background: #FFFFFF;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
    margin-bottom: 40px;
    border: 1px solid rgba(237, 232, 245, 0.4);
}

.pc-shop-categories .shop-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 6px;
    border-radius: 14px;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
}

.pc-shop-categories .shop-cat-item:hover {
    background: var(--primary-light-purple);
    transform: translateY(-2px);
}

.pc-shop-categories .shop-cat-item.active {
    background: var(--primary-light-purple);
}

.pc-shop-categories .shop-cat-item.active .shop-cat-icon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 14px rgba(124, 77, 255, 0.25);
}

.pc-shop-categories .shop-cat-item.active span {
    color: var(--primary-dark-purple);
    font-weight: 700;
}

.pc-shop-categories .shop-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light-purple);
    color: var(--primary-dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s;
}

.pc-shop-categories .shop-cat-icon svg {
    width: 24px;
    height: 24px;
}

.pc-shop-categories .shop-cat-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.pc-shop-categories .shop-cat-item.active .shop-cat-icon img {
    filter: brightness(0) invert(1);
}

.pc-shop-categories .shop-cat-all-icon svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pc-shop-categories .shop-cat-item span {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 800;
    white-space: nowrap;
}

.shops-grid-pc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

/* ==========================================================================
   Medical View: PK Table & FAQ snippets
   ========================================================================== */

.medical-intro-pc {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    margin-bottom: 40px;
    border: 1px solid rgba(237, 232, 245, 0.4);
}

.medical-intro-pc h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.medical-intro-pc p {
    font-size: 14px;
    color: #5A5869;
    margin-bottom: 20px;
    line-height: 1.8;
}

.authority-citation-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* PK Table Styles (SEO/GEO Crucial) */
.medical-pk-container {
    width: 100%;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    border: 1px solid rgba(237, 232, 245, 0.4);
    overflow: hidden;
}

.medical-pk-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    border-left: 4px solid #4caf50;
    padding-left: 12px;
}

.pk-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.pk-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

.pk-table th {
    background: #F4F1FA;
    color: var(--text-main);
    font-weight: 800;
    padding: 14px 16px;
    border-bottom: 2px solid var(--border-color);
}

.pk-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    color: #555266;
}

.pk-table tr:hover td {
    background: #FAF9FD;
}


.pk-table-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* FAQ Accordion Section (GEO optimized) */
.faq-section-pc {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
}

.faq-list-pc {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-pc {
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 15px;
}

.faq-question-row {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
}

.faq-question-row:hover {
    color: var(--primary-dark-purple);
}

.faq-question-row::after {
    content: '+';
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-purple);
}

.faq-item-pc.active .faq-question-row::after {
    content: '−';
}

.faq-answer-row {
    display: none;
    font-size: 13px;
    color: #5A5869;
    padding-top: 10px;
    line-height: 1.8;
}

.faq-item-pc.active .faq-answer-row {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Details Pages Layout (Shop & Guide)
   ========================================================================== */

/* 1. Shop Detail Layout (Sticky Sidebar) */
.shop-detail-pc-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.shop-detail-main-content {
    flex: 1;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
}

.detail-back-bar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.detail-back-bar:hover {
    color: var(--primary-dark-purple);
}

/* Gallery Slider */
.shop-detail-gallery-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
}

.shop-detail-gallery-wrapper {
    display: flex;
    width: 300%;
    height: 380px;
    transition: transform 0.5s ease-out;
}

.shop-detail-gallery-slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.gallery-count-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Shop Detail Info Header */
.shop-detail-header-pc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.shop-detail-title-block h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
}

.shop-detail-title-block p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}





/* Info Grid (Address, hours) */
.shop-detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: #FAF9FD;
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 30px;
}

.info-grid-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
}

.info-grid-label {
    color: var(--text-muted);
    font-weight: 700;
}

.info-grid-value {
    color: var(--text-main);
    font-weight: 800;
}

/* Tabs Panel */
.shop-detail-tabs-pc {
    display: flex;
    border-bottom: 1.5px solid var(--border-color);
    margin-bottom: 25px;
    gap: 30px;
}

.shop-detail-tab-item {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-muted);
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}

.shop-detail-tab-item.active {
    color: var(--primary-dark-purple);
}

.shop-detail-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-dark-purple);
    border-radius: 2px;
}

.shop-detail-tab-content {
    display: none;
}

.shop-detail-tab-content.active {
    display: block;
}

/* Rich content */
.shop-detail-rich-content h3 {
    font-size: 18px;
    font-weight: 800;
    border-left: 3px solid var(--primary-purple);
    padding-left: 10px;
    margin: 25px 0 12px;
}

.shop-detail-rich-content p {
    font-size: 13px;
    color: #5A5869;
    line-height: 1.8;
    margin-bottom: 16px;
}

.shop-detail-parameter-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.shop-detail-parameter-table td {
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    font-size: 12px;
}

.shop-detail-parameter-table td.param-key {
    background: #FAF9FD;
    font-weight: 800;
    width: 150px;
}

/* Sticky Booking Sidebar */
.shop-detail-sticky-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 95px;
}

/* 推荐广告位卡片 (替代原参考起步价/二维码) */
.sidebar-ad-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sidebar-ad-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(124, 77, 255, 0.18);
}

.sidebar-ad-poster {
    background: linear-gradient(160deg, #FF6F91 0%, #FF3D60 50%, #C92A52 100%);
    color: #FFFFFF;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-ad-poster::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.sidebar-ad-poster::after {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.sidebar-ad-poster-tag {
    display: inline-block;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    color: #C92A52;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.sidebar-ad-poster-headline {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 6px;
    line-height: 1.1;
}

.sidebar-ad-poster-sub {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 8px;
}

.sidebar-ad-poster-date {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: rgba(0, 0, 0, 0.18);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.sidebar-ad-poster-perks {
    position: relative;
    z-index: 1;
    font-size: 12px;
    line-height: 1.9;
    font-weight: 600;
    opacity: 0.96;
}

.sidebar-ad-book-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    color: #FFFFFF;
    border: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.2s;
    text-align: center;
    text-decoration: none;
}

.sidebar-ad-book-btn:hover {
    opacity: 0.92;
}

.sidebar-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-price-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
}

.sidebar-price-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark-purple);
}

.sidebar-qr-box {
    width: 100%;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-qr-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    background-size: cover;
    background-position: center;
}

.sidebar-qr-text {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
}

.sidebar-book-btn {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.25);
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.sidebar-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(124, 77, 255, 0.35);
}

.sidebar-badge-tip {
    background: #FFF3E0;
    border: 1px solid rgba(251, 140, 0, 0.15);
    color: #E65100;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.4;
}

/* 2. Guide Detail Layout (Centered Reading Panel) */
.guide-detail-pc-container {
    max-width: 850px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
}

.guide-detail-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 20px;
}

.guide-detail-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--border-color);
    margin-bottom: 30px;
}

.guide-detail-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.guide-detail-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.guide-detail-author-info {
    display: flex;
    flex-direction: column;
}

.guide-detail-author-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}

.guide-detail-date {
    font-size: 11px;
    color: var(--text-muted);
}

.guide-detail-banner {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
}

.guide-rich-body {
    font-size: 14px;
    color: #434054;
    line-height: 1.9;
    letter-spacing: 0.2px;
}

.guide-rich-body p {
    margin-bottom: 20px;
}

.guide-rich-body blockquote {
    background: #FAF8FD;
    border-left: 4px solid var(--primary-purple);
    padding: 16px 20px;
    border-radius: 0 16px 16px 0;
    margin: 25px 0;
    font-size: 13px;
    color: #5A5869;
    line-height: 1.8;
}

.guide-rich-body img {
    width: 100%;
    border-radius: 16px;
    margin: 25px 0;
    box-shadow: var(--shadow-card);
}

.guide-rich-body strong {
    color: var(--text-main);
}



/* ==========================================================================
   Modals & Popups
   ========================================================================== */

.pc-wechat-modal {
    position: fixed;
    inset: 0;
    background: rgba(44, 42, 56, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.pc-wechat-modal.active {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.modal-pc-content {
    background: #FFFFFF;
    border-radius: 24px;
    width: 380px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(124, 77, 255, 0.25);
    border: 1px solid rgba(237, 232, 245, 0.8);
    position: relative;
    animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalScaleUp {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-pc-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-pc-close-btn:hover {
    color: var(--primary-dark-purple);
}

.modal-pc-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-pc-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
}

.modal-pc-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.modal-pc-qr-box {
    width: 170px;
    height: 170px;
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 12px;
    margin: 0 auto 20px;
}

.modal-pc-qr-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.modal-pc-action-box {
    text-align: center;
}

.modal-copy-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.modal-copy-btn {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light-purple);
    border: 1.5px solid rgba(124, 77, 255, 0.15);
    color: var(--primary-dark-purple);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-copy-btn:hover {
    background: var(--primary-dark-purple);
    color: #FFFFFF;
    border-color: var(--primary-dark-purple);
}

/* Toast Notification */
.pc-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(44, 42, 56, 0.95);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 2500;
    transition: var(--transition-smooth);
}

.pc-toast.active {
    display: block;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Extracted Custom Article & Compare Card Styles from styles.css
   ========================================================================== */

.topic-tab-pill {
    padding: 6px 14px;
    border-radius: 16px;
    background: var(--bg-primary);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.topic-tab-pill.active {
    background: var(--primary-light-purple);
    color: var(--primary-purple);
    border-color: rgba(158,123,255,0.3);
}

.topic-rich-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 20px 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
}

.topic-rich-banner {
    height: 130px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
}

.topic-rich-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: 12px;
}

.topic-rich-banner h3 {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 800;
}

.topic-section-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin: 16px 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topic-section-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.topic-text {
    font-size: 12px;
    color: #4A4854;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ==========================================================================
   医美功课 (Medical) 与医院细节
   ========================================================================== */
.price-compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.price-compare-table th {
    text-align: left;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.price-compare-table td {
    padding: 10px 0;
    font-size: 12px;
    border-bottom: 1px solid #F6F6F9;
}

.price-compare-table tr:last-child td {
    border-bottom: none;
}

.price-chart-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
}

.price-chart-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-svg-container {
    width: 100%;
    height: 120px;
    position: relative;
}

.price-chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 6px;
}

.price-chart-labels .label-active {
    color: var(--primary-purple);
    font-weight: 700;
}

.clinic-card-large {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
}

.clinic-large-img {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.clinic-large-body {
    padding: 16px;
}

.clinic-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
}

.clinic-address-box {
    background: var(--bg-primary);
    padding: 10px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.4;
    color: #4A4A57;
}

.clinic-tag {
    font-size: 10px;
    background: #EFEFF6;
    color: #4A4A57;
    padding: 2px 8px;
    border-radius: 6px;
}

.clinic-doctor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 10px rgba(158,123,255,0.1);
}

.clinic-doctor-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
    cursor: pointer;
}

.clinic-doctor-info {
    flex: 1;
}






/* 攻略大标题元数据 */
.guide-article-info {
    margin-bottom: 20px;
    padding: 4px 4px 16px;
    border-bottom: 1px dashed var(--border-color);
}

.guide-article-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.35;
    margin-bottom: 8px;
}

.guide-article-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.guide-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-article-tags {
    display: flex;
    gap: 6px;
}

.tag-homework {
    font-size: 10px;
    font-weight: 700;
    color: #FF4081;
    background: var(--accent-light-pink);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 64, 129, 0.1);
}

.tag-guide {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-purple);
    background: var(--primary-light-purple);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(158, 123, 255, 0.1);
}

.guide-article-date {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================================================
   医美功课 ONDA vs 钛提升 特殊卡片样式
   ========================================================================== */
.onda-vs-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 0 16px;
}

.onda-vs-title-tag {
    font-size: 18px;
    font-weight: 800;
    color: #4E342E;
    letter-spacing: 0.5px;
}

.onda-vs-vs {
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF80AB 0%, #FF4081 100%);
    color: #FFFFFF;
    padding: 2px 6px;
    border-radius: 6px;
    transform: rotate(-8deg);
    box-shadow: 0 3px 6px rgba(255,64,129,0.25);
}

.onda-vs-title-tag2 {
    font-size: 18px;
    font-weight: 800;
    color: #311B92;
    letter-spacing: 0.5px;
}

.onda-vs-split {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.onda-column {
    flex: 1;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.5);
    display: flex;
    flex-direction: column;
}

.onda-column.left-onda {
    border-top: 4px solid #C5A880;
}

.onda-column.right-titanium {
    border-top: 4px solid #7C4DFF;
}

.symptom-box {
    padding: 12px 10px;
    flex: 1;
}

.symptom-title {
    font-size: 11px;
    font-weight: bold;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.symptom-title svg {
    width: 12px;
    height: 12px;
}

.symptom-item {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.symptom-item::before {
    content: '•';
    font-weight: bold;
    font-size: 13px;
    line-height: 10px;
}

.left-onda .symptom-item::before {
    color: #C5A880;
}

.right-titanium .symptom-item::before {
    color: #7C4DFF;
}

.onda-waves .wave {
    width: 30px;
    height: 90px;
    background: linear-gradient(180deg, rgba(197,168,128,0) 0%, rgba(197,168,128,0.4) 60%, rgba(245,124,0,0.7) 100%);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    animation: pulseEnergy 1.5s infinite alternate;
}

/* 核心对比参数表 */
.onda-vs-table-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.5);
    margin-bottom: 16px;
}

.onda-vs-table-title {
    padding: 12px 16px 0;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.onda-vs-table-title::before {
    content: '';
    width: 3px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.onda-vs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.onda-vs-table th {
    background: #F8F7FC;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    padding: 8px;
    border-bottom: 1.5px solid var(--border-color);
}

.onda-vs-table th:first-child {
    background: #F3EFFF;
    color: var(--primary-purple);
}

.onda-vs-table td {
    padding: 10px 8px;
    font-size: 11px;
    border-bottom: 1px solid #F5F4FA;
    line-height: 1.35;
}

.onda-vs-table tr:last-child td {
    border-bottom: none;
}

.onda-vs-table td:first-child {
    font-weight: 700;
    color: #5C5A6B;
    background: #FAF9FC;
    width: 75px;
}

.onda-vs-table .td-onda {
    color: #795548;
    background: rgba(250, 246, 240, 0.4);
}

.onda-vs-table .td-titanium {
    color: #5E35B1;
    background: rgba(244, 240, 250, 0.4);
}

.choice-col.onda-choice .choice-col-header {
    color: #8D6E63;
}

.choice-col.onda-choice .choice-list-item::before {
    color: #C5A880;
}

/* 温馨提示 */
.warm-tips-box {
    background: #F4F6F9;
    border-radius: 16px;
    padding: 12px 14px;
    border-left: 4px solid var(--text-muted);
    margin-bottom: 24px;
}

.warm-tips-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.warm-tips-item {
    font-size: 11px;
    color: #5C5A6B;
    line-height: 1.45;
    margin-bottom: 4px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.warm-tips-item::before {
    content: '•';
}

/* 医美Tab快捷横幅 */
.medical-promo-banner {
    background: linear-gradient(135deg, #9E7BFF 0%, #7C4DFF 100%);
    border-radius: 20px;
    padding: 16px;
    color: #FFFFFF;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(124, 77, 255, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}

.medical-promo-banner:active {
    transform: scale(0.97);
}

.medical-promo-banner::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* 通用富文本排版 */
.guide-rich-content {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.5);
    margin-bottom: 20px;
}

.guide-rich-content h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    margin: 16px 0 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.guide-rich-content h3::before {
    content: '';
    width: 3px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.guide-rich-content h3:first-child {
    margin-top: 0;
}

.guide-rich-content p {
    font-size: 12px;
    color: #4A4854;
    line-height: 1.6;
    margin-bottom: 12px;
}

.guide-rich-content strong {
    color: var(--primary-purple);
}

.guide-rich-banner-img {
    width: 100%;
    height: 130px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    margin-bottom: 14px;
}

/* ==========================================================================
   V5.0 韩国店铺详情页专属样式 (Shop Details)
   ========================================================================== */
.shop-detail-scroll {
    flex: 1;
    overflow-y: auto;
    background-color: var(--bg-primary);
    padding: 0;
}

.shop-detail-scroll::-webkit-scrollbar {
    display: none;
}

.shop-detail-banner {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}


.shop-detail-body {
    padding: 16px;
}

.shop-detail-header-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 14px;
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.shop-detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.shop-detail-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.3;
}

.shop-detail-share {
    color: var(--text-muted);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.shop-detail-share svg {
    width: 16px;
    height: 16px;
}

.shop-detail-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

.shop-detail-address-box {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 10px;
    font-size: 10px;
    color: #4A4A57;
    line-height: 1.4;
    margin-bottom: 8px;
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.shop-detail-address-box svg {
    width: 12px;
    height: 12px;
    color: var(--primary-purple);
    flex-shrink: 0;
    margin-top: 2px;
}

.shop-detail-response {
    font-size: 11px;
    color: var(--accent-pink);
    font-weight: 700;
}

.shop-detail-tabs {
    display: flex;
    border-radius: 14px;
    background: #FFFFFF;
    padding: 4px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.shop-detail-tab-btn {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: bold;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    font-family: inherit;
}

.shop-detail-tab-btn.active {
    background: var(--primary-light-purple);
    color: var(--primary-purple);
}

.shop-tab-panel {
    display: none;
}

.shop-tab-panel.active {
    display: block;
}

.shop-detail-tab-btn .tab-badge {
    font-size: 8px;
    color: #FFFFFF;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 4px;
}

.shop-detail-tab-btn .tab-badge.news { background: #9E7BFF; }

.shop-detail-tab-btn .tab-badge.hot { background: #FF4081; }

.shop-detail-meta-row {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 14px 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 14px;
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.shop-detail-hours {
    font-size: 11px;
    color: #4A4854;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #EDE8F5;
}

.shop-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.shop-detail-tag {
    font-size: 10px;
    font-weight: 700;
    background: #F4F0FA;
    color: var(--primary-purple);
    padding: 3px 8px;
    border-radius: 6px;
}

.shop-detail-sub-nav {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #EDE8F5;
    margin-bottom: 14px;
    padding: 0 4px;
}

.shop-detail-sub-nav-item {
    font-size: 12px;
    font-weight: bold;
    color: var(--text-muted);
    padding: 8px 0;
    cursor: pointer;
    position: relative;
}

.shop-detail-sub-nav-item.active {
    color: var(--accent-pink);
}

.shop-detail-sub-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-pink);
}

.shop-detail-desc-block {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 14px;
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.shop-detail-desc-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-detail-desc-title::before {
    content: '';
    width: 3px;
    height: 12px;
    background: var(--accent-pink);
    border-radius: 2px;
}

.shop-detail-desc-text {
    font-size: 11px;
    color: #4A4854;
    line-height: 1.6;
}

.shop-detail-grid {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 14px;
    border: 1px solid rgba(237, 232, 245, 0.5);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
}

.shop-grid-item {
    font-size: 11px;
    color: #4A4854;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-grid-item svg {
    width: 12px;
    height: 12px;
    color: var(--text-muted);
}

.shop-grid-label {
    color: var(--text-muted);
}

.shop-grid-val {
    font-weight: bold;
    color: var(--text-main);
}

.shop-detail-services {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.shop-detail-services-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.shop-service-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4A4854;
    font-weight: bold;
}

.shop-service-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-light-purple);
    color: var(--primary-purple);
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-service-icon svg {
    width: 10px;
    height: 10px;
}

.shop-detail-more {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.shop-detail-more-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shop-detail-more-title::before {
    content: '';
    width: 3px;
    height: 12px;
    background: var(--primary-purple);
    border-radius: 2px;
}

.shop-more-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.shop-more-scroll::-webkit-scrollbar {
    display: none;
}

.shop-more-card {
    flex-shrink: 0;
    width: 120px;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.shop-more-img {
    width: 100%;
    height: 70px;
    background-size: cover;
    background-position: center;
}

.shop-more-name {
    padding: 6px;
    font-size: 10px;
    font-weight: bold;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-detail-footer {
    height: 54px;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 0 16px 4px;
    z-index: 100;
}


.shop-detail-cta-box {
    position: relative;
}

.shop-detail-cta {
    background: linear-gradient(135deg, #FF80AB 0%, #FF4081 100%);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 64, 129, 0.2);
}

.shop-detail-cta-badge {
    position: absolute;
    right: 0;
    top: -12px;
    background: #FFB300;
    color: #FFFFFF;
    font-size: 7px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 6px;
    border: 1px solid #FFFFFF;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.shop-detail-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 64, 129, 0.32);
}

/* 移动端店铺详情页底部固定预约栏 */
.shop-detail-bottom-bar {
    padding: 10px 16px;
    background: #FFFFFF;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.shop-detail-book-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.shop-detail-book-btn:active {
    opacity: 0.9;
    transform: scale(0.98);
}

/* 同品类推荐卡片 */
.shop-more-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.shop-more-scroll::-webkit-scrollbar {
    display: none;
}

.shop-more-card {
    flex: 0 0 100px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: var(--shadow-card);
    transition: transform 0.15s;
}

.shop-more-card:active {
    transform: scale(0.96);
}

.shop-more-img {
    width: 100%;
    height: 70px;
    background-size: cover;
    background-position: center;
}

.shop-more-name {
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   店铺详情 - 价格明细面板 (Price Detail Panel)
   ========================================================================== */
.price-detail-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.price-promo-banner {
    background: linear-gradient(135deg, #FFE2EC 0%, #FFD0DC 100%);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #C92A52;
    margin-bottom: 12px;
}

.price-promo-tag {
    display: inline-block;
    background: #C92A52;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.price-promo-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.price-promo-date {
    font-size: 11px;
    color: #8A2B45;
}

.price-promo-right {
    font-size: 56px;
    font-weight: 800;
    color: rgba(201, 42, 82, 0.25);
    line-height: 1;
}

.price-promo-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.price-perk {
    background: #FFF6F8;
    border-radius: 8px;
    padding: 8px 10px;
    border: 1px solid #FFE2EC;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-perk strong {
    font-size: 11px;
    color: #C92A52;
    font-weight: 700;
}

.price-perk span {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.4;
}

.price-section {
    margin-bottom: 14px;
    border: 1px solid #FFE2EC;
    border-radius: 10px;
    overflow: hidden;
}

.price-section-head {
    background: #FFEDF2;
    color: #C92A52;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-section-head.red {
    background: linear-gradient(90deg, #FFD7E1 0%, #FFEDF2 100%);
}

.price-section-sub {
    font-size: 10px;
    font-weight: 500;
    color: #B96680;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-top: 1px dashed #FFE2EC;
    font-size: 11.5px;
    color: var(--text-main);
    gap: 10px;
}

.price-row:first-of-type {
    border-top: none;
}

.price-row > span:first-child {
    flex: 1;
    line-height: 1.5;
}

.price-val {
    font-size: 13px;
    font-weight: 800;
    color: #E53350;
    white-space: nowrap;
}

.price-tip {
    background: #FFF8E1;
    color: #8D6E00;
    font-size: 11px;
    padding: 10px 12px;
    border-radius: 8px;
    line-height: 1.5;
    margin-top: 8px;
}

/* ==========================================================================
   店铺详情 - 活动明细面板 (Activity Detail Panel)
   ========================================================================== */
.activity-detail-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.5);
}

.activity-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.activity-hero::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.activity-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.activity-hero-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
}

.activity-hero-sub {
    font-size: 12px;
    opacity: 0.92;
    margin-bottom: 10px;
    line-height: 1.5;
}

.activity-hero-date {
    display: inline-block;
    background: rgba(0, 0, 0, 0.18);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 6px;
}

.activity-section {
    margin-bottom: 14px;
}

.activity-section-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.activity-perk-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--bg-primary);
    border-radius: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.activity-perk-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-perk-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.activity-perk-body strong {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-main);
}

.activity-perk-body span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.activity-rule {
    font-size: 11.5px;
    color: var(--text-main);
    line-height: 1.8;
    background: var(--bg-primary);
    padding: 12px;
    border-radius: 10px;
}

.activity-cta-tip {
    text-align: center;
    background: #FFF8E1;
    color: #8D6E00;
    font-size: 12px;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

/* ==========================================================================
   PC 全局页脚 (Site Footer)
   ========================================================================== */
.pc-site-footer {
    background: var(--primary-light-purple);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 0;
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.5fr 1fr;
    gap: 30px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark-purple);
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: #5A5869;
    text-decoration: none;
    margin-bottom: 18px;
    cursor: pointer;
    transition: color 0.2s;
    width: fit-content;
}

.footer-link:hover {
    color: var(--primary-dark-purple);
}

.footer-company-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.footer-address-line {
    font-size: 14px;
    color: #5A5869;
    line-height: 1.75;
}

.footer-contact-line {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9;
}

.footer-contact-line:first-of-type {
    margin-top: 14px;
}

.footer-qr-img {
    width: 90px;
    height: 90px;
    padding: 5px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-card);
}

.footer-qr-caption {
    width: 90px;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 2px;
}

.footer-bottom-bar {
    max-width: 1200px;
    margin: 38px auto 0;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-copyright {
    letter-spacing: 0.5px;
}

.footer-copyright .footer-copy-en {
    letter-spacing: 1px;
}

.footer-beian {
    display: flex;
    gap: 30px;
}

.footer-beian a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-beian a:hover {
    color: var(--primary-dark-purple);
}

/* ==========================================================================
   页脚信息页 (公司资质 / 公司介绍 / 联系我们 / 协议条款等)
   ========================================================================== */
.company-page-header {
    text-align: center;
    margin-bottom: 36px;
}

.company-page-header h1 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.company-page-sub {
    font-size: 14px;
    color: var(--text-muted);
}

.company-page-header::after {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
}

.company-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 34px 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
    margin-bottom: 26px;
}

.company-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    border-left: 4px solid var(--primary-dark-purple);
    padding-left: 14px;
    margin-bottom: 20px;
}

.company-card p {
    font-size: 14px;
    color: #5A5869;
    line-height: 1.9;
    margin-bottom: 16px;
}

.company-card p:last-child {
    margin-bottom: 0;
}

.company-card strong {
    color: var(--primary-dark-purple);
}

/* 资质证书网格 */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 24px;
}

.cert-item {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    background: #FCFBFE;
    transition: var(--transition-smooth);
}

.cert-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(124, 77, 255, 0.2);
}

.cert-thumb {
    height: 175px;
    background: linear-gradient(135deg, var(--primary-light-purple) 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark-purple);
    border-bottom: 1px solid var(--border-color);
}

.cert-thumb svg {
    width: 54px;
    height: 54px;
}

.cert-body {
    padding: 16px 18px;
}

.cert-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
}

.cert-no {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cert-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 3px 10px;
    border-radius: 20px;
}

.company-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 4px 0 30px;
}

/* 信息页底部引导 CTA */
.company-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark-purple) 100%);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: var(--shadow-soft);
}

.company-cta h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.company-cta p {
    font-size: 13px;
    opacity: 0.92;
    margin-bottom: 20px;
}

.company-cta button {
    background: #FFFFFF;
    color: var(--primary-dark-purple);
    font-size: 15px;
    font-weight: 800;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.company-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* 数据成就 */
.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 26px;
}

.company-stat {
    background: var(--bg-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
    border-radius: 20px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.company-stat-num {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-dark-purple) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 600;
}

/* 优势 / 服务 / 联系方式 网格 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #FCFBFE;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light-purple);
    color: var(--primary-dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.feature-text a {
    color: var(--primary-dark-purple);
    text-decoration: none;
    font-weight: 700;
}

.feature-text a:hover {
    text-decoration: none;
}

/* 地图占位 */
.company-map {
    height: 280px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-light-purple) 0%, #FFFFFF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    gap: 10px;
    padding: 20px;
}

.company-map svg {
    width: 44px;
    height: 44px;
    color: var(--primary-purple);
}

/* 法律条款页 (用户协议 / 医院协议 / 信息保护 / 文明公约) */
.legal-doc {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 46px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(237, 232, 245, 0.4);
}

.legal-notice {
    background: var(--primary-light-purple);
    border: 1px solid rgba(124, 77, 255, 0.15);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--primary-dark-purple);
    line-height: 1.7;
    margin-bottom: 26px;
}

.legal-doc h2 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin: 28px 0 12px;
    padding-left: 12px;
    border-left: 4px solid var(--primary-dark-purple);
}

.legal-doc h2:first-of-type {
    margin-top: 0;
}

.legal-doc p {
    font-size: 14px;
    color: #5A5869;
    line-height: 1.9;
    margin-bottom: 14px;
}

.legal-doc p:last-child {
    margin-bottom: 0;
}

.legal-doc strong {
    color: var(--text-main);
}

.legal-footer-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 28px;
}

.legal-footer-note a {
    color: var(--primary-dark-purple);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.legal-footer-note a:hover {
    text-decoration: none;
}

/* 店铺详情：用户评价 / 预约须知 */
.shop-detail-review-section,
.shop-detail-notice-section {
    margin-top: 18px;
}

.shop-review-grid,
.shop-review-list,
.shop-notice-list {
    display: grid;
    gap: 14px;
}

.shop-review-card,
.shop-notice-card {
    background: #FFFFFF;
    border: 1px solid rgba(237, 232, 245, 0.95);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(60, 45, 95, 0.05);
}

.shop-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 800;
}

.shop-review-head span {
    color: var(--primary-purple);
    font-size: 13px;
    white-space: nowrap;
}

.shop-review-content,
.shop-notice-card p {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.shop-review-date {
    margin-top: 12px;
    color: #9A93AA;
    font-size: 12px;
}

.shop-notice-card h3 {
    margin: 0;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 800;
}

.shop-empty-card {
    color: var(--text-muted);
}
