/* ================================================================
   小兔窝 · 简洁列表卡 v8
================================================================ */

/* 分类筛选条 */
.t-shop-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    margin-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.t-shop-filters::-webkit-scrollbar { display: none; }

.t-shop-filter-btn {
    flex-shrink: 0;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1.5px solid var(--t-line);
    background: var(--t-bg-card);
    font-size: 13px;
    color: var(--t-text-soft);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--t-base);
    font-weight: 500;
    font-family: inherit;
}

.t-shop-filter-btn.active {
    background: var(--t-carrot);
    border-color: var(--t-carrot);
    color: white;
    box-shadow: 0 2px 8px rgba(232,149,107,0.35);
}

/* 列表 */
.t-shop-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 列表卡片 */
.t-shop-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--t-bg-card);
    border: 1.5px solid var(--t-line);
    border-radius: 16px;
    cursor: pointer;
    transition: all var(--t-base) var(--ease);
    box-shadow: var(--sh-sm);
    position: relative;
}

.t-shop-entry:hover {
    transform: translateY(-1px);
    border-color: var(--t-carrot-soft);
    box-shadow: var(--sh-md);
}
.t-shop-entry:active { transform: translateY(0); }

/* 封面 */
.t-shop-cover {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--t-bg-warm);
    box-shadow: 0 2px 6px rgba(168,130,90,0.12);
}
.t-shop-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 中间信息 */
.t-shop-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.t-shop-title {
    font-family: var(--ff-display);
    font-size: 15px;
    color: var(--t-text);
    letter-spacing: 0.04em;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.t-shop-intro {
    font-size: 11.5px;
    color: var(--t-text-light);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.t-shop-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.t-shop-cat-tag {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}
.t-shop-cat-ancient   { background: rgba(184,134,11,0.12);  color: #8b6914; }
.t-shop-cat-xianxia   { background: rgba(122,196,149,0.16); color: #3d7a5c; }
.t-shop-cat-modern    { background: rgba(127,168,200,0.16); color: #3d6b94; }
.t-shop-cat-entertain { background: rgba(232,143,176,0.16); color: #94436b; }
.t-shop-cat-sandbox   { background: rgba(168,140,197,0.16); color: #6b4f94; }
.t-shop-cat-minguo    { background: rgba(232,149,107,0.14); color: #8b4f2f; }
.t-shop-cat-fantasy   { background: rgba(184,134,11,0.12);  color: #6b4a2a; }

.t-shop-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    color: var(--t-text-light);
    font-family: var(--ff-num);
}
.t-shop-stats svg {
    width: 11px;
    height: 11px;
    vertical-align: -1px;
    margin-right: 2px;
}

/* 右侧收藏 */
.t-shop-fav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--t-base);
    color: var(--t-text-light);
}
.t-shop-fav:active { transform: scale(0.88); }
.t-shop-fav svg { width: 16px; height: 16px; }
.t-shop-fav.active {
    color: var(--t-pink);
}
.t-shop-fav.active svg {
    fill: currentColor;
}

/* 即将上线 */
.t-shop-entry.is-coming-soon {
    opacity: 0.55;
    cursor: not-allowed;
}
.t-shop-entry.is-coming-soon:hover {
    transform: none;
    border-color: var(--t-line);
    box-shadow: var(--sh-sm);
}

/* 不要旧的样式 */
.t-shop-entry-bg-svg,
.t-shop-art,
.t-shop-entry-en,
.t-shop-entry-main,
.t-shop-entry-title,
.t-shop-entry-slogan,
.t-shop-entry-foot,
.t-shop-entry-tags,
.t-shop-entry-go {
    display: none !important;
}

/* 小屏 */
@media (max-width: 380px) {
    .t-shop-entry { padding: 10px; gap: 10px; }
    .t-shop-cover { width: 50px; height: 50px; }
    .t-shop-title { font-size: 14px; }
    .t-shop-intro { font-size: 11px; }
}
