/* ========== 全局重置与基础 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
    background-color: #fff7f0;
    color: #3d2b1f;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px 40px;
}

/* ========== 通用组件 ========== */
.card {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 6px 0 #f0d5b8, 0 12px 24px rgba(201, 95, 13, 0.06);
    padding: 20px 18px;
    margin: 20px 0px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #c95f0d;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.section-title i {
    font-size: 24px;
    width: 1em;
    text-align: center;
}

.subtitle {
    font-size: 13px;
    color: #a0806a;
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background: #c95f0d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 36px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 0 #8e4207, 0 8px 20px rgba(201, 95, 13, 0.25);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #8e4207, 0 4px 12px rgba(201, 95, 13, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: #fff7f0;
    color: #c95f0d;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 28px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 0 #f0d5b8;
    border: 2px solid #f9cd9c;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.tag {
    display: inline-block;
    background: #fef3e8;
    color: #c95f0d;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 2px 2px;
    text-decoration: none;
}

.divider {
    height: 1px;
    background: #f5e0cc;
    margin: 16px 0;
    border: none;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.price-now {
    font-size: 18px;
    font-weight: 800;
    color: #c95f0d;
}

.price-original {
    font-size: 12px;
    color: #b8a090;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.cta-center {
    text-align: center;
    margin: 20px 0 8px;
}

@media (max-width: 768px) {
    .cta-center {
        display: none;
    }
}

/* ========== 页头 HERO ========== */
/* ========== 微信二维码区域 ========== */
.hero-qrcode-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-qrcode-img {
    width: 30%;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.hero-qrcode-img:active {
    transform: scale(0.97);
}
@media (max-width: 768px) {
    .hero-qrcode-img {
        width: 55%;
    }
}
.hero-qrcode-text {
    font-size: 12px;
    color: #8a6a50;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hero-section {
    background: linear-gradient(165deg, #fff7f0 0%, #fef3e8 40%, #fde8d4 100%);
    border-radius: 40px;
    padding: 32px 20px 28px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 0 #f0d5b8, 0 16px 32px rgba(201,95,13,0.08);
    position: relative;
    overflow: hidden;
}

.hero-decoration-right,
.hero-decoration-left {
    position: absolute;
    background: #f9cd9c;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-decoration-right {
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    opacity: 0.5;
}

.hero-decoration-left {
    bottom: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: #c95f0d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 34px;
    font-weight: 900;
    color: #3d2b1f;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 16px;
    color: #a0806a;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-stats {
    font-size: 13px;
    color: #8a6a50;
    margin-bottom: 10px;
    line-height: 1.7;
}

.hero-stats strong {
    color: #c95f0d;
}

.hero-footer-text {
    font-size: 11px;
    color: #b8a090;
    margin-top: 12px;
}

/* ========== 数据条 ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.stat-item {
    background: #fff;
    border-radius: 20px;
    padding: 12px 8px;
    text-align: center;
    box-shadow: 0 4px 0 #f0d5b8;
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #c95f0d;
}

.stat-label {
    font-size: 10px;
    color: #a0806a;
}

/* ========== 痛点卡片 ========== */
.pain-card {
    background: #fff7f0;
    border-radius: 20px;
    padding: 14px 16px;
    margin-top: 8px;
}

.pain-title {
    font-size: 13px;
    color: #c95f0d;
    font-weight: 600;
}

.pain-list {
    font-size: 13px;
    color: #6b4f3a;
    margin-top: 6px;
}

/* ========== 科普区 ========== */
.edu-section {
    background: #fef3e8;
    border-radius: 28px;
    padding: 20px 18px;
    margin-bottom: 20px;
    box-shadow: 0 6px 0 #f0d5b8;
}

.edu-text {
    font-size: 13px;
    color: #6b4f3a;
    line-height: 1.8;
}

/* ========== 服务卡片（网格） ========== */
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 16px 14px;
    box-shadow: 0 5px 0 #f0d5b8;
    display: flex;
    flex-direction: column;
}

.service-icon {
    font-size: 26px;
    margin-bottom: 6px;
    color: #c95f0d;
}

.service-name {
    font-size: 16px;
    font-weight: 700;
    color: #3d2b1f;
}

.service-effect {
    font-size: 11px;
    color: #a0806a;
    margin: 4px 0;
}

.service-duration {
    font-size: 11px;
    color: #b8a090;
}

.service-price {
    margin-top: 8px;
}

/* ========== 抢单列表 ========== */
.flash-section {
    background: #fff7f0;
    border-radius: 24px;
    padding: 14px 16px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.flash-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #f0d5b8;
}

.flash-item:last-child {
    border-bottom: none;
}

.flash-name {
    font-weight: 700;
    color: #3d2b1f;
    font-size: 15px;
}

.flash-desc {
    font-size: 11px;
    color: #a0806a;
    display: block;
}

.flash-price {
    text-align: right;
}

/* ========== 艾灸卡片 ========== */
.moxa-card {
    background: #fff;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 5px 0 #f0d5b8;
}

/* ========== 优惠券区 ========== */
.coupon-hero {
    background: linear-gradient(135deg, #c95f0d, #e07c2e);
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 0 #8e4207, 0 16px 32px rgba(201,95,13,0.2);
    margin-bottom: 16px;
}

.coupon-hero-label {
    font-size: 13px;
    color: #fef3e8;
    font-weight: 500;
}

.coupon-hero-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

.coupon-hero-desc {
    font-size: 14px;
    color: #fef3e8;
}

.coupon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.coupon-item {
    background: #fff;
    border-radius: 20px;
    padding: 12px 14px;
    box-shadow: 0 4px 0 #f0d5b8;
    border-left: 4px solid #c95f0d;
}

.coupon-value {
    font-size: 18px;
    font-weight: 800;
    color: #c95f0d;
}

.coupon-condition {
    font-size: 11px;
    color: #a0806a;
}

/* ========== 会员区 ========== */
.member-block {
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 6px 0 #f0d5b8;
    margin-bottom: 16px;
}

.member-title {
    font-size: 16px;
    font-weight: 700;
    color: #c95f0d;
    margin-bottom: 10px;
}

.member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.member-level {
    background: #fef3e8;
    border-radius: 18px;
    padding: 12px;
    text-align: center;
}

.member-level-name {
    font-weight: 800;
    color: #c95f0d;
    font-size: 15px;
}

.member-level-info {
    font-size: 12px;
    color: #6b4f3a;
}

.member-level-note {
    font-size: 10px;
    color: #a0806a;
}

.member-ordinary .member-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.member-card {
    background: #fff7f0;
    border-radius: 16px;
    padding: 10px 8px;
    text-align: center;
}

.member-card.highlight {
    border: 2px solid #f9cd9c;
}

.member-card-name {
    font-weight: 700;
    font-size: 14px;
}

.member-card-price {
    font-size: 12px;
    color: #c95f0d;
    font-weight: 700;
}

.member-card-original {
    font-size: 10px;
    color: #b8a090;
}

.member-note {
    font-size: 11px;
    color: #a0806a;
    margin-top: 10px;
    text-align: center;
}

/* ========== 服务流程 ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    text-align: center;
}

.process-step {
    background: #fef3e8;
    border-radius: 20px;
    padding: 14px 6px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-icon {
    font-size: 24px;
    color: #c95f0d;
}

.process-label {
    font-size: 11px;
    font-weight: 600;
    color: #3d2b1f;
    margin-top: 4px;
}

/* ========== 优势卡片 ========== */
.advantage-card {
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.advantage-icon {
    font-size: 24px;
    color: #c95f0d;
}

.advantage-title {
    font-weight: 700;
    font-size: 15px;
    margin: 4px 0;
}

.advantage-text {
    font-size: 12px;
    color: #a0806a;
}

/* ========== 城市标签 ========== */
.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ========== 关于我们 ========== */
.about-text {
    font-size: 13px;
    color: #6b4f3a;
    line-height: 1.8;
}

.about-legal {
    font-size: 11px;
    color: #b8a090;
    margin-top: 12px;
}

/* ========== 安全提示 ========== */
.safety-box {
    background: #fef3e8;
    border-radius: 24px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.safety-title {
    font-size: 14px;
    font-weight: 700;
    color: #c95f0d;
    margin-bottom: 8px;
}

.safety-text {
    font-size: 11px;
    color: #6b4f3a;
    line-height: 1.8;
}

/* ========== 购买须知 ========== */
.notice-box {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 5px 0 #f0d5b8;
}

.notice-title {
    font-size: 14px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 8px;
}

.notice-text {
    font-size: 11px;
    color: #6b4f3a;
    line-height: 1.8;
}

/* ========== 底部 CTA ========== */
.final-cta {
    text-align: center;
    margin-top: 28px;
    padding: 20px 0 8px;
}

.final-cta-box {
    background: linear-gradient(135deg, #c95f0d, #e07c2e);
    border-radius: 32px;
    padding: 24px 20px;
    box-shadow: 0 8px 0 #8e4207, 0 20px 40px rgba(201,95,13,0.2);
}

.final-cta-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.final-cta-desc {
    font-size: 13px;
    color: #fef3e8;
    margin-bottom: 16px;
}

.final-cta .btn-primary {
    background: #ffffff;
    color: #c95f0d;
    box-shadow: 0 5px 0 #f9cd9c;
    font-size: 17px;
    padding: 14px 40px;
}

.final-cta-footnote {
    font-size: 10px;
    color: #fef3e8;
    margin-top: 12px;
    opacity: 0.8;
}

.copyright {
    font-size: 10px;
    color: #c0a890;
    margin-top: 16px;
}

/* ========== 头部 ========== */
.site-header {
    max-width: 640px;
    margin: 0 auto;
    background: #fff7f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* box-shadow: 0 2px 0 #f0d5b8; */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.header-title {
    font-size: 18px;
    font-weight: 700;
    color: #c95f0d;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #c95f0d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 0 #8e4207;
}

/* ========== 页脚 ========== */
.site-footer {
    background: #fff7f0;
    padding: 20px 16px;
    text-align: center;
    font-size: 11px;
    color: #b8a090;
    border-top: 1px solid #f5e0cc;
}

.site-footer a {
    color: #c95f0d;
    text-decoration: none;
}

/* ========== 按摩实景图模块 ========== */
.real-scene-section {
    margin-bottom: 20px;
}

.real-scene-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.real-scene-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 0 #f0d5b8, 0 8px 16px rgba(201, 95, 13, 0.08);
    background: #fff7f0;
    aspect-ratio: 1 / 1; /* 正方形比例，可根据需要调整 */
    transition: transform 0.2s ease;
}

.real-scene-item:active {
    transform: scale(0.97);
}

.real-scene-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}