/* SoccerStar Shop UI v2.0 */

/* Global */
[class^="shp-"], [class*=" shp-"] {
    box-sizing: border-box;
    white-space: normal;
}

/* Hide original items */
.shop_lst_box.shp-hidden { display: none !important; }

/* === Category Tabs === */
.shp-tabs {
    display: flex; gap: 4px; margin-bottom: 10px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 2px 0;
}
.shp-tabs::-webkit-scrollbar { display: none; }
.shp-tab {
    padding: 6px 12px; border-radius: 5px;
    font-size: 12px; font-weight: 700; cursor: pointer;
    white-space: nowrap; flex-shrink: 0;
    transition: all 0.15s;
    background: linear-gradient(180deg, #e8e8e8, #d0d0d0);
    border: 2px solid #999; color: #666;
    box-shadow: 0 2px 0 #888;
}
.shp-tab:active { box-shadow: 0 1px 0 #888; transform: translateY(1px); }
.shp-tab.active {
    background: linear-gradient(180deg, #b39ddb, #9575cd);
    border-color: #7e57c2; color: #fff;
    box-shadow: 0 2px 0 #5e35b1;
}
.shp-card.shp-hide { display: none; }

/* === Card === */
.shp-card {
    border-radius: 8px; margin-bottom: 8px; padding: 12px;
}
.shp-card.lt {
    background: linear-gradient(180deg, #f8f8f8, #ebebeb);
    border: 2px solid #bbb;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 4px rgba(0,0,0,0.08);
}
.shp-card.dk {
    background: linear-gradient(180deg, #383838, #2c2c2c);
    border: 2px solid #4a4a4a;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 2px 4px rgba(0,0,0,0.2);
}
/* 고가 아이템: 보라 보더 */
.shp-card.premium.lt { border-color: #9575cd; box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 2px 4px rgba(149,117,205,0.15); }
.shp-card.premium.dk { border-color: #7e57c2; box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 2px 4px rgba(126,87,194,0.15); }

.shp-top { display: flex; gap: 12px; align-items: center; }

/* 아이콘 */
.shp-icon {
    width: 64px; height: 64px; border-radius: 8px;
    flex-shrink: 0; position: relative; overflow: visible;
}
.shp-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }

/* 보유수량 뱃지 */
.shp-stock {
    position: absolute; top: -5px; right: -5px;
    font-size: 10px; font-weight: 800; padding: 2px 6px;
    border-radius: 6px; min-width: 20px; text-align: center;
    border: 2px solid #333; z-index: 1;
    background: linear-gradient(180deg, #b39ddb, #9575cd); color: #fff;
}

/* 정보 */
.shp-info { flex: 1; min-width: 0; }
.shp-name { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }

/* ? 버튼 */
.shp-q {
    font-size: 10px; font-weight: 800; width: 20px; height: 20px;
    border-radius: 50%; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.1s;
}
.shp-q.lt { background: #ede7f6; border: 1.5px solid #9575cd; color: #7e57c2; }
.shp-q.dk { background: rgba(149,117,205,0.15); border: 1.5px solid #7e57c2; color: #b39ddb; }
.shp-q:active { transform: scale(0.9); }

.shp-desc { font-size: 11px; margin-top: 3px; line-height: 1.4; }

/* 상세 펼치기 */
.shp-detail {
    font-size: 11px; padding: 10px 12px; margin-top: 10px; border-radius: 6px;
    line-height: 1.6; display: none;
}
.shp-detail.lt { background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.06); color: #666; }
.shp-detail.dk { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); color: #bbb; }
.shp-detail.show { display: block; }
.shp-detail ul { padding-left: 16px; margin-top: 4px; }
.shp-detail li { margin-bottom: 2px; }

/* 가격+버튼 행 */
.shp-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding-top: 10px; }
.shp-bottom.lt { border-top: 1px solid rgba(0,0,0,0.06); }
.shp-bottom.dk { border-top: 1px solid rgba(255,255,255,0.04); }

.shp-price { font-size: 15px; font-weight: 800; color: #9575cd; }
.shp-price .sp { font-size: 11px; font-weight: 700; opacity: 0.7; }
.shp-price .old { font-size: 11px; opacity: 0.3; text-decoration: line-through; margin-left: 4px; }

/* 버튼 */
.shp-btn {
    display: inline-block; padding: 7px 20px; font-size: 13px; font-weight: 700;
    border-radius: 5px; cursor: pointer; text-align: center;
    transition: all 0.1s;
    background: linear-gradient(180deg, #f0f0f0, #d8d8d8);
    border: 2px solid #999; color: #444;
    box-shadow: 0 2px 0 #888;
}
.shp-btn:active { box-shadow: 0 1px 0 #888; transform: translateY(1px); }
/* 위험 아이템: 테두리+글씨만 빨강 */
.shp-btn.danger { border-color: #d32f2f; color: #d32f2f; }
