/* 手机端搜索页样式 */

.search-page-wrapper {
    padding: 10px;
}

.search-container {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
}

.page-header {
    margin-bottom: 15px;
}

.page-title {
    font-size: 16px;
    font-weight: 500;
}

/* 排序标签 */
.sort-tabs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    -webkit-overflow-scrolling: touch;
}

.sort-tabs::-webkit-scrollbar {
    display: none;
}

.sort-tab {
    flex-shrink: 0;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.sort-tab.active {
    background: #C9A86C;
    color: #fff;
}

/* 商品网格 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.product-image-link {
    display: block;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #FFFBF5;
}

.product-info {
    padding: 10px;
}

.product-name {
    font-size: 13px;
    color: #333;
    line-height: 1.3;
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.product-intro {
    font-size: 11px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 5px;
}

.original-price {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 3px;
}

.price-heart-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.sale-price {
    font-size: 15px;
    color: #C9A86C;
    font-weight: 600;
}

.discount-badge {
    background: #C9A86C;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
}

.favorite-btn {
    width: 28px;
    height: 28px;
    margin-left: auto;
    color: #ccc;
    cursor: pointer;
}

.favorite-btn.liked {
    color: #C9A86C;
}

.favorite-btn.liked .heart-path {
    fill: #C9A86C;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #999;
}
