/* 商品卡片样式（确保封面图适配） */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
}

.goods-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.goods-card:hover {
    transform: translateY(-3px);
}

/* 商品封面图（正方形显示） */
.goods-image {
    width: 100%;
    padding-bottom: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 1px solid #f5f5f5;
}

.goods-info {
    padding: 12px;
}

.goods-name {
    font-size: 14px;
    color: #2d3748;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-detail-btn {
    width: 100%;
    padding: 8px 0;
    background: #4096ff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.view-detail-btn:hover {
    background: #3586f3;
}

/* 搜索栏样式（确保页面结构完整） */
.search-bar {
    display: flex;
    padding: 15px;
    gap: 8px;
}

.search-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    padding: 0 16px;
    background: #4096ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-btn:hover {
    background: #3586f3;
}

/* 无商品样式 */
.no-goods {
    text-align: center;
    padding: 50px 15px;
    color: #718096;
}

.no-goods img {
    margin-bottom: 15px;
    opacity: 0.6;
}

/* 加载更多样式 */
.load-more {
    text-align: center;
    padding: 20px 15px;
}

.load-more-btn {
    padding: 10px 24px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    border-color: #4096ff;
    color: #4096ff;
}