.hero {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #ffe6ef 55%, #ffd3e0);
    display: grid;
    grid-template-columns: 1.5fr .9fr;
    gap: 20px;
    align-items: center;
    overflow: hidden;
}

.hero h1 {
    margin: 0;
    font-size: 38px;
    line-height: 1.2;
    color: #222;
}

.hero p {
    color: #666;
    line-height: 1.8;
    margin: 14px 0 22px;
}

.hero-panel {
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(255,47,109,.14);
}

.hero-panel strong {
    display: block;
    font-size: 24px;
    color: #ff2f6d;
}

.xhs-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.xhs-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(255,47,109,.14);
}

.cover {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #fff0f4;
}

.avatar-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffe1ea;
}

.goddess-name {
    font-weight: 900;
    font-size: 16px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.tag {
    padding: 4px 8px;
    background: #fff0f4;
    color: #ff2f6d;
    border-radius: 999px;
    font-size: 12px;
}

.price {
    color: #ff2f6d;
    font-size: 22px;
    font-weight: 900;
}

.old-price {
    color: #aaa;
    text-decoration: line-through;
    margin-left: 6px;
    font-size: 13px;
}

.request-card h3,
.article-card h3,
.goods-card h3,
.post-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.4;
}

.request-card p,
.article-card p,
.goods-card p,
.post-card p {
    color: #666;
    line-height: 1.65;
    margin: 0;
    font-size: 14px;
}

.profile-head {
    background: #fff;
    border: 1px solid #ffe1ea;
    border-radius: 24px;
    overflow: hidden;
}

.profile-cover {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #ffe1ea;
}

.profile-info {
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.profile-info .avatar {
    width: 86px;
    height: 86px;
    margin-top: -48px;
    border: 4px solid #fff;
}

.profile-info h1 {
    margin: 0;
}

.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.order-status {
    font-weight: 800;
    color: #ff2f6d;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .profile-cover {
        height: 190px;
    }
}

/* 商品详情页：极简关联女神 */
.related-goddesses {
    margin: 18px 0;
    background: #fff;
    border: 1px solid #ffe1ea;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(255, 47, 109, .06);
}

.related-goddesses h2 {
    margin: 0;
    padding: 14px 16px;
    font-size: 20px;
    line-height: 1.2;
    border-bottom: 1px solid #fff0f4;
}

.related-goddess-list {
    display: flex;
    flex-direction: column;
}

.related-goddess-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid #fff0f4;
}

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

.related-goddess-main {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
}

.related-goddess-avatar {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffe1ea;
}

.related-goddess-avatar-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2f6d;
    font-weight: 900;
    font-size: 18px;
}

.related-goddess-info {
    min-width: 0;
}

.related-goddess-name {
    font-size: 16px;
    font-weight: 900;
    color: #222;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-goddess-meta {
    margin-top: 3px;
    font-size: 14px;
    color: #666;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-goddess-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 34px;
    padding: 0 14px;
    border: 1px solid #ff9abb;
    border-radius: 999px;
    color: #ff2f6d;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.related-goddess-link:active {
    transform: scale(.98);
    background: #fff0f4;
}

@media (max-width: 420px) {
    .related-goddesses {
        border-radius: 18px;
    }

    .related-goddesses h2 {
        padding: 13px 14px;
        font-size: 19px;
    }

    .related-goddess-item {
        padding: 11px 12px;
        gap: 10px;
    }

    .related-goddess-avatar {
        width: 46px;
        height: 46px;
    }

    .related-goddess-link {
        min-width: 80px;
        height: 32px;
        padding: 0 12px;
        font-size: 13px;
    }
}
