/**
 * AI万能搜样式 - 完整版
 * 
 * @package AI_WanNengSou
 * @since 2.0.0
 */

/* 商品推荐区域 */
.aiws-product-section {
    margin: 50px 0;
    padding: 35px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.aiws-product-section .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.aiws-product-section .section-desc {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 25px;
}

/* 商品网格 */
.aiws-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* 商品卡片 */
.aiws-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.aiws-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.aiws-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.aiws-product-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin: 15px 15px 10px 15px;
    line-height: 1.5;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.aiws-product-card p {
    margin: 8px 15px;
    font-size: 13px;
    color: #6c757d;
}

.aiws-product-card .product-reason {
    color: #0d6efd;
    font-size: 12px;
    background: #e7f1ff;
    padding: 8px 12px;
    border-radius: 6px;
    margin: 10px 15px;
}

/* 价格和按钮 */
.aiws-product-card .buy-button {
    display: block;
    margin: 15px;
    padding: 12px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.aiws-product-card .buy-button:hover {
    background: linear-gradient(135deg, #ee5a5a 0%, #d94545 100%);
    color: #fff;
    text-decoration: none;
}

/* 后台商品列表 */
.aiws-admin-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #dee2e6;
}

.aiws-admin-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.aiws-admin-product > div {
    flex: 1;
}

.aiws-admin-product h5 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}

.aiws-admin-product p {
    margin: 3px 0;
    font-size: 12px;
    color: #6c757d;
}

/* 响应式 */
@media (max-width: 768px) {
    .aiws-product-section {
        padding: 25px;
        margin: 35px 0;
    }
    
    .aiws-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .aiws-product-card h4 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .aiws-product-grid {
        grid-template-columns: 1fr;
    }
}
