.tab-page-shop {
    padding: 0;
}

.shop-detail {
    padding: 16px 12px calc(16px + var(--safe-bottom));
}

.shop-detail-loading,
.shop-detail-empty,
.shop-detail-error {
    padding: 40px 16px;
    text-align: center;
    font-size: 17px;
    color: var(--color-text-muted);
}

.shop-detail-head {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}

.shop-detail-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.shop-detail-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.shop-detail-address svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    fill: var(--color-primary);
}

.shop-detail-intro {
    margin-top: 10px;
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.shop-detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.shop-stat {
    background: rgba(201, 162, 39, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
}

.shop-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.shop-stat-label {
    margin-top: 4px;
    font-size: 15px;
    color: var(--color-text-muted);
}

.shop-match-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-match-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 12px 14px;
}

.shop-match-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.shop-match-meta {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.shop-detail-section {
    margin-top: 4px;
}

.shop-detail-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.shop-detail-section-sub {
    font-size: 15px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.shop-participant-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-participant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 12px;
}

.shop-participant-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2418, #1a1a20);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    overflow: hidden;
}

.shop-participant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-participant-info {
    flex: 1;
    min-width: 0;
}

.shop-participant-name {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 2px;
}

.shop-participant-time {
    font-size: 15px;
    color: var(--color-text-muted);
}
