/**
 * 门店列表 / 详情页样式（对齐 trip-style 设计体系）
 */

/* ========== 列表页 ========== */

.store-page-header {
    padding: 120px 0 36px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light, #f7f7f7) 100%);
    border-bottom: 1px solid var(--border-color, #eee);
}

.store-page-header .section-title,
.store-page-header .section-subtitle {
    text-align: center;
}

.store-page-header .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.store-filter-panel {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color, #eee);
    padding: 20px 22px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.store-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.store-search-field {
    flex: 1 1 220px;
    min-width: 0;
    position: relative;
}

.store-search-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.store-search-field input {
    width: 100%;
    height: 48px;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    padding: 0 16px 0 44px;
    font-size: 15px;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.store-search-field input:focus {
    outline: none;
    border-color: var(--primary-color, #FD4621);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(253, 70, 33, 0.12);
}

.store-search-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: 12px;
    background: var(--theme-secondary, #0f172a);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.store-search-btn:hover {
    background: var(--theme-secondary-hover, #1f2937);
}

.store-search-btn:active {
    transform: scale(0.98);
}

.store-location-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.store-location-hint i {
    color: var(--primary-color, #FD4621);
    flex-shrink: 0;
}

.store-cate-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    margin-bottom: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.store-cate-strip::-webkit-scrollbar {
    height: 4px;
}

.store-cate-strip::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.store-cate-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 72px;
    max-width: 88px;
    padding: 10px 8px;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.store-cate-item:hover {
    background: #f9fafb;
}

.store-cate-item.is-active {
    background: rgba(253, 70, 33, 0.08);
    border-color: rgba(253, 70, 33, 0.25);
}

.store-cate-item.is-active .store-cate-title {
    color: var(--primary-color, #FD4621);
    font-weight: 600;
}

.store-cate-cover-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.store-cate-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-cate-title {
    font-size: 12px;
    color: #374151;
    text-align: center;
    line-height: 1.25;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.store-card {
    display: flex;
    align-items: stretch;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-color, #eee);
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s;
    position: relative;
}

.store-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border-color: rgba(253, 70, 33, 0.2);
}

.store-card-cover-wrap {
    flex-shrink: 0;
    width: 148px;
    height: 132px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
}

.store-card-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.store-card:hover .store-card-cover {
    transform: scale(1.03);
}

.store-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 28px;
}

.store-card-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #d1d5db;
    font-size: 14px;
    transition: color 0.2s, transform 0.2s;
}

.store-card:hover .store-card-arrow {
    color: var(--primary-color, #FD4621);
    transform: translateY(-50%) translateX(3px);
}

.store-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.store-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-status {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    color: #64748b;
    background: #f8fafc;
}

.store-status.is-open {
    border-color: #111;
    color: #111;
    background: #fff;
}

.store-status.is-closed {
    border-color: #F89831;
    color: #F89831;
    background: rgba(248, 152, 49, 0.08);
}

.store-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #5A5A5D;
    margin-bottom: 10px;
    gap: 12px;
}

.store-meta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.store-meta-left span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.store-star-val {
    color: #FF9519;
    font-weight: 700;
}

.store-service-count {
    color: #E67D4B;
    font-weight: 600;
    flex-shrink: 0;
}

.store-rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.store-rate-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.store-rate-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.06);
    color: #111;
    font-size: 12px;
    font-weight: 500;
}

.store-rate-chip strong {
    font-weight: 700;
}

.store-distance {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #636363;
    font-size: 13px;
    flex-shrink: 0;
}

.store-h5-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.store-h5-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-1px);
}

.store-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: store-shimmer 1.2s infinite;
    border-radius: 16px;
    height: 168px;
}

@keyframes store-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========== 详情页 ========== */

.store-detail-page {
    padding-top: 72px;
    background: var(--bg-light, #f7f7f7);
    min-height: 100vh;
    padding-bottom: 88px;
}

.store-hero-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.store-hero-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    background: #e5e7eb;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

.store-hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.store-hero-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    margin: 0;
}

.store-info-panel {
    max-width: 1100px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.store-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color, #eee);
}

.store-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.store-back-link:hover {
    color: var(--primary-color, #FD4621);
}

.store-quick-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 16px 0 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid #f3f4f6;
}

.store-quick-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-quick-stat-val {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.store-quick-stat-val.is-star {
    color: #FF9519;
}

.store-quick-stat-label {
    font-size: 12px;
    color: #9ca3af;
}

.store-info-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.store-info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
    color: #303030;
    font-size: 15px;
    line-height: 1.5;
}

.store-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.store-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #111;
    font-size: 14px;
}

.store-info-label {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.store-detail-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 0;
}

.store-section {
    background: #fff;
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color, #eee);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.03);
}

.store-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.store-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.store-section-label {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: #FF2404;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-section-label.is-pack {
    background: #FF2404;
}

.store-section-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.store-section-more:hover {
    color: #111;
}

.store-section-empty {
    color: #9ca3af;
    font-size: 14px;
    padding: 12px 0;
}

/* —— H5 预约项目卡片（xxlocallife-service-list-item type=1）—— */
.h5-service-list {
    display: flex;
    flex-direction: column;
}

.h5-service-card {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
}

.h5-service-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.h5-service-cover {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
}

.h5-service-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2px 0;
}

.h5-service-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h5-service-sub {
    font-size: 13px;
    color: #717171;
    margin-top: 4px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.35;
}

.h5-service-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    color: #717171;
    font-size: 12px;
    margin-bottom: 10px;
    width: fit-content;
}

.h5-service-chip i {
    font-size: 11px;
}

.h5-service-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.h5-service-price-box {
    min-width: 0;
    flex: 1;
}

.h5-service-price-line {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.h5-service-currency {
    font-size: 11px;
    color: #1A1A1A;
    font-weight: 700;
}

.h5-service-amount {
    font-size: 18px;
    color: #1A1A1A;
    font-weight: 800;
    line-height: 1.1;
}

.h5-service-unit {
    font-size: 11px;
    color: #717171;
}

.h5-service-vip-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.h5-service-vip-tag {
    font-size: 11px;
    color: #1A1A1A;
    line-height: 1.2;
}

.h5-service-level-tag {
    font-size: 11px;
    color: #717171;
    line-height: 1.2;
}

.h5-service-book-btn {
    flex-shrink: 0;
    min-width: 56px;
    height: 36px;
    padding: 0 16px;
    border: none;
    border-radius: 999px;
    background: #111111;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.h5-service-book-btn:hover {
    background: #333;
}

/* —— H5 团购卡片（shopstore/pages/detail package-item）—— */
.h5-package-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.h5-package-card {
    width: calc(50% - 6px);
    box-sizing: border-box;
    border: 1px solid #F2F2F2;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: block;
    padding-bottom: 13px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.h5-package-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: inherit;
}

.h5-package-cover {
    width: 100%;
    height: 115px;
    object-fit: cover;
    background: #f3f4f6;
    display: block;
}

.h5-package-body {
    padding: 10px 12px 0;
}

.h5-package-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h5-package-sub {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h5-package-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.h5-package-price-left {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-wrap: wrap;
}

.h5-package-currency {
    font-size: 11px;
    color: #FF2404;
    font-weight: 700;
}

.h5-package-amount {
    font-size: 18px;
    color: #FF2404;
    font-weight: 800;
    line-height: 1;
}

.h5-package-discount {
    display: inline-block;
    padding: 0 6px;
    border-radius: 4px;
    color: #FE2D2D;
    border: 1px solid #FE2D2D;
    font-size: 11px;
    font-weight: 600;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 18px;
}

.h5-package-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 23px;
    border-radius: 999px;
    background: #111111;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
}

.h5-package-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2px;
}

.h5-package-init-price {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
}

.h5-package-sale {
    font-size: 12px;
    color: #111;
}

/* 旧类名保留兼容（不再使用） */
.service-item {
    display: none;
}

/* 达人 */
.joyexpert-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-width: thin;
}

.joyexpert-item {
    width: 96px;
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.joyexpert-item:hover {
    transform: translateY(-2px);
}

.joyexpert-avatar-wrap {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.joyexpert-item:hover .joyexpert-avatar-wrap {
    box-shadow: 0 6px 20px rgba(253, 70, 33, 0.2);
}

.joyexpert-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f3f4f6;
}

.joyexpert-name {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #111;
}

/* 评价 */
.review-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid #f3f4f6;
}

.review-item:first-child {
    border-top: none;
    padding-top: 0;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    color: #111;
}

.review-stars {
    color: #FAD961;
    font-size: 11px;
    margin-left: 6px;
}

.review-time {
    font-size: 12px;
    color: #9ca3af;
    flex-shrink: 0;
}

.review-tags {
    margin: 6px 0;
}

.review-tag {
    display: inline-block;
    padding: 4px 10px;
    margin: 0 6px 6px 0;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 12px;
    color: #64748b;
    border: 1px solid #e5e7eb;
}

.review-text {
    margin-top: 8px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
}

/* 底部栏 */
.store-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color, #eee);
    padding: 14px 0;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.06);
}

.store-sticky-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.store-sticky-name {
    font-weight: 700;
    font-size: 16px;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-sticky-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

.store-sticky-btn {
    flex-shrink: 0;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--primary-color, #FD4621);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(253, 70, 33, 0.35);
}

.store-sticky-btn:hover {
    background: var(--primary-hover-color, #e03e1f);
}

.store-sticky-btn:active {
    transform: scale(0.98);
}

/* H5 弹窗（与达人详情统一） */
.store-mobile-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.55);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.store-mobile-modal.is-open {
    display: flex;
}

.store-mobile-panel {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: var(--modal-radius, 20px);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.store-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #f3f4f6;
}

.store-mobile-head h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.store-mobile-body {
    padding: 22px;
}

.store-mobile-body p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.store-mobile-qr {
    width: 180px;
    height: 180px;
    margin: 8px auto 16px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}

.store-mobile-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-mobile-tip {
    font-size: 13px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 16px;
}

.store-mobile-link {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.store-mobile-link:hover {
    background: #333;
    color: #fff;
}

.store-mobile-close {
    border: none;
    background: #f3f4f6;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    color: #64748b;
    transition: background 0.2s;
}

.store-mobile-close:hover {
    background: #e5e7eb;
}

/* ========== 响应式 ========== */

@media (max-width: 992px) {
    .h5-package-card {
        width: calc(50% - 6px);
    }

    .store-hero-inner {
        height: 280px;
    }

    .store-hero-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .store-page-header {
        padding: 88px 0 24px;
    }

    .store-filter-panel {
        padding: 14px;
        border-radius: 14px;
    }

    .store-search-row {
        gap: 10px;
    }

    .store-search-field {
        flex: 1 1 100%;
        width: 100%;
    }

    .store-search-field input {
        font-size: 16px;
    }

    .store-search-btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .store-card {
        flex-direction: column;
    }

    .store-card-cover-wrap {
        width: 100%;
        height: 180px;
    }

    .store-card-body {
        padding-right: 0;
    }

    .store-card-arrow {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .store-card:hover .store-card-arrow {
        transform: translateX(3px);
    }

    .store-info-card {
        padding: 22px 20px;
    }

    .store-section {
        padding: 20px 18px;
    }

    .h5-package-card {
        width: 100%;
    }

    .h5-service-card {
        flex-direction: column;
    }

    .h5-service-cover {
        width: 100%;
        height: 160px;
    }

    .store-sticky-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .store-sticky-btn {
        width: 100%;
    }
}
